-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.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": "smart-websocket",
"version": "1.0.1",
"description": "A smart websocket library, simple to use.",
"keywords": [
"websocket",
"reconnect"
],
"main": "dist/smart-websocket.umd.js",
"module": "dist/smart-websocket.esm.js",
"files": [
"dist",
"src",
"examples"
],
"scripts": {
"build": "node build/build.js",
"examples-dev": "webpack-dev-server --config build/examples-dev.js --open",
"examples-build": "webpack --config build/examples-build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zack24q/smart-websocket.git"
},
"author": "zack <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zack24q/smart-websocket/issues"
},
"homepage": "https://github.com/zack24q/smart-websocket#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"fs-extra": "^4.0.0",
"html-webpack-plugin": "^2.29.0",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-progress": "^0.4.0",
"webpack": "^3.4.0",
"webpack-dev-server": "^2.6.1"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}