-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "revenant",
"version": "3.0.0",
"description": "Keeps your RuTracker favourites up to date.",
"main": "index.js",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^2.3.2",
"cheerio": "^1.0.0-rc.3",
"commander": "^4.1.0",
"rutracker-api": "^1.1.0"
},
"scripts": {
"start": "node index.js",
"test": "npm run lint && jest",
"lint": "eslint ."
},
"files": [
"index.js",
"lib",
"bin"
],
"bin": {
"revenant": "./bin/revenant.js"
},
"author": "Nikita Gusarov <nickgusarov@gmail.com>",
"license": "MIT",
"devDependencies": {
"axios-mock-adapter": "^1.17.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"prettier": "^1.10.2"
}
}