-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.38 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
46
47
48
49
50
51
{
"name": "bilibili-danmaku-client",
"version": "2.0.0",
"description": "A Node.js client for the Bilibili Live Danmaku Interface",
"main": "dist/index.js",
"scripts": {
"test": "mocha --recursive --require @babel/register",
"lint": "eslint **/*.js",
"build": "babel src --out-dir dist"
},
"keywords": [
"bilibili",
"websocket"
],
"author": "std4453 <me@std4453.com> (https://std4453.com)",
"homepage": "https://std4453.github.io/bilibil-danmaku-client",
"repository": {
"type": "git",
"url": "https://github.com/std4453/bilibili-danmaku-client"
},
"bugs": {
"url": "https://github.com/std4453/bilibili-danmaku-client/issues",
"email": "me@std4453.com"
},
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.51",
"debug": "^3.1.0",
"lodash": "^4.17.10",
"x-platform-ws": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.51",
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/register": "^7.0.0-beta.51",
"core-js": "^2.5.7",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"mocha": "^5.2.0"
},
"nyc": {
"exclude": [
"dist"
]
}
}