-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
32 lines (32 loc) · 873 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
{
"name": "chaosocket",
"version": "0.1.1",
"description": "Mock WebSockets and create chaos",
"main": "src/index.js",
"scripts": {
"start": "npm-run-all --parallel serve watch",
"serve": "serve",
"socket_server": "node demo/server.js",
"watch": "watchify demo/index.js -o demo/bundle.js -v",
"test": "browserify test/index.js | browser-run | tap-spec",
"release": "npm version patch && npm publish && git push --tags && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzarcon/chaosocket.git"
},
"author": "zzarcon",
"license": "MIT",
"devDependencies": {
"browser-run": "^3.2.1",
"browserify": "^13.1.0",
"npm-run-all": "^3.1.1",
"serve": "^1.4.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"watchify": "^3.7.0"
},
"dependencies": {
"faker": "^3.1.0"
}
}