-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
{
"name": "bili-api",
"version": "1.10.1",
"description": "Bilibili API 接口",
"main": "index.js",
"scripts": {
"test": "npm run unit",
"unit": "nyc mocha --reporter=landing",
"lint": "eslint --fix .",
"coverage": "mkdir coverage; nyc report --reporter=text-lcov >> ./coverage/lcov.info",
"readme": "npm run dot && npm run md",
"md": "node md/update",
"dot": "node md/dot; fdp -Tsvg md/api.dot > api.svg"
},
"repository": "github:simon300000/bili-api",
"keywords": [
"bilibili",
"api"
],
"author": "simon3000 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/simon300000/bili-api/issues"
},
"homepage": "https://github.com/simon300000/bili-api#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"markdown-toc": "^1.2.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0"
},
"dependencies": {
"got": "^10.0.3",
"relationx": "^0.5.0",
"xml2js": "^0.4.19"
}
}