-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1021 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
37
38
39
40
{
"name": "d-websocket",
"version": "0.0.1",
"description": "a websocket for web page",
"main": "dist/d-websocket.cjs.js",
"module": "dist/d-websocket.esm.js",
"browser": "dist/d-websocket.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DZG-MELODY/DWebsocket.git"
},
"keywords": [
"javascript",
"websocket",
"web"
],
"author": "melody_dzg",
"license": "ISC",
"bugs": {
"url": "https://github.com/DZG-MELODY/DWebsocket/issues"
},
"homepage": "https://github.com/DZG-MELODY/DWebsocket#readme",
"devDependencies": {
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"rollup": "^0.66.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-node-resolve": "^3.4.0"
}
}