-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 891 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 891 Bytes
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": "realtime-multiplayer-engine",
"version": "1.0.0",
"description": "",
"main": "client.js",
"devDependencies": {
"browser-sync": "^2.18.13",
"browser-sync-webpack-plugin": "^1.2.0",
"chai": "^4.1.0",
"express": "^4.15.4",
"http-proxy-middleware": "^0.17.4",
"mocha": "^3.4.2",
"npm-run-all": "^4.1.1",
"npm-watch": "^0.2.0",
"primus": "^7.1.0",
"primus-emit": "^1.0.0",
"primus-msgpack": "^1.0.2",
"sinon": "^2.3.8",
"uws": "^8.14.1",
"webpack": "^3.5.5"
},
"watch": {
"test": {
"patterns": [
"src",
"test"
],
"extensions": "js"
}
},
"scripts": {
"watch": "npm-watch test",
"test": "mocha --recursive -u exports --reporter=min",
"dev" : "run-p dev:*",
"dev:server": "node server",
"dev:build": "webpack"
},
"author": "",
"license": "ISC"
}