-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
35 lines (35 loc) · 964 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
{
"name": "node-multiplayer-snake",
"version": "1.0.3",
"description": "A multiplayer snake game built on NodeJs, Express, socket.io, JavaScript ES6, and jspm.",
"repository": {
"type": "git",
"url": "https://github.com/simondiep/node-multiplayer-snake.git"
},
"scripts": {
"start": "node app.js",
"pretest": "eslint .",
"test": "mocha",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"socket.io-client": "^1.4.6",
"supertest": "^1.2.0"
},
"dependencies": {
"express": "^4.14.0",
"less-middleware": "^2.1.0",
"serve-favicon": "^2.3.0",
"socket.io": "^1.4.6",
"validator": "^5.4.0"
},
"license": "MIT"
}