-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 952 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": "lifegame",
"version": "1.0.0",
"description": "Conway's game of life impementation",
"main": "server.js",
"scripts": {
"build:client": "watchify static/js/main.js -o static/bundle.js -v",
"build:server": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fargelus/Game-of-Life.git"
},
"author": "fargelus",
"license": "ISC",
"bugs": {
"url": "https://github.com/fargelus/Game-of-Life/issues"
},
"homepage": "https://github.com/fargelus/Game-of-Life#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.15.5",
"obelisk.js": "^1.2.2"
},
"devDependencies": {
"browserify": "^14.4.0",
"ejs": "^2.5.7",
"eslint": "^4.7.2",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.12.1",
"watchify": "^3.9.0"
}
}