-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.98 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.98 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "light-socket-io",
"version": "0.0.1",
"description": "一个基于原生WebSocket封装的轻量包",
"author": "rhymedys <rhymedys@gmail.com>",
"keywords": [
"realtime",
"framework",
"websocket",
"tcp",
"events",
"socket",
"io"
],
"main": "./src/index",
"files": [
"src/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rhymedys/LightSocketIO.git"
},
"scripts": {
"build": "node build/build.js",
"test": "karma start build/karma.config.js",
"release": "bash build/release.sh"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.0",
"compression-webpack-plugin": "^1.0.1",
"expect.js": "0.3.1",
"http-server": "^0.10.0",
"jasmine": "^2.5.2",
"jasmine-core": "^2.8.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"light-babel-import": "^1.6.8",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"resolve": "^1.7.0",
"rollup": "^0.57.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.0",
"superagent": "^3.8.2",
"supertest": "^3.0.0",
"uglify-js": "^2.7.4",
"webpack": "^4.5.0"
},
"dependencies": {
"light-utils": "^0.1.0"
}
}