-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 858 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
41
42
{
"name": "patchwire",
"version": "0.5.0",
"description": "Multiplayer game server framework for Node.js",
"engines": {
"node": "^12.18.3",
"npm": "^6.4.1"
},
"main": "index.js",
"scripts": {
"lint": "semistandard",
"test": "mocha --exit",
"ci": "npm run lint && npm run test"
},
"keywords": [
"server",
"socket",
"multiplayer",
"game"
],
"repository": {
"type": "git",
"url": "https://github.com/twisterghost/patchwire.git"
},
"bugs": {
"url": "https://github.com/twisterghost/patchwire/issues"
},
"files": [
"index.js",
"lib"
],
"author": "Michael Barrett <[email protected]> (https://mjb.im/)",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "^8.1.3",
"sinon": "^9.0.3"
}
}