-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 886 Bytes
/
package.json
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
{
"name": "douban-box",
"version": "1.1.2",
"main": "lib/ndex.js",
"repository": "[email protected]:CodeDaraW/douban-box.git",
"author": "CodeDaraW <[email protected]>",
"license": "MIT",
"bin": {
"douban-box": "lib/index.js"
},
"scripts": {
"lint": "eslint --ext .js,.ts ./src",
"build": "rm -rf lib && tsc",
"prepublish": "npm run build"
},
"files": [
"lib"
],
"dependencies": {
"axios": "^0.19.2",
"cheerio": "^1.0.0-rc.3",
"gist-box": "^0.3.0",
"tslib": "^1.11.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-plugin-import": "^2.20.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}