forked from rtoal/coin-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 806 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
{
"name": "coin-game",
"version": "0.0.1",
"description": "my first socket.io app",
"dependencies": {
"express": "4.10.2",
"redis": "^2.6.5",
"socket.io": "1.2.0"
},
"main": "index.js",
"devDependencies": {
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0"
},
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rtoal/coin-game.git"
},
"keywords": [
"socket.io",
"node",
"express"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rtoal/coin-game/issues"
},
"homepage": "https://github.com/rtoal/coin-game#readme"
}