-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 890 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": "conways-game-of-life",
"version": "0.0.1",
"private": true,
"description": "The implementation of Conway's Game of Life using Node.js, Express.js and D3.js",
"main": "app.js",
"scripts": {
"test": "mocha test",
"postinstall": "bash scripts/post-install.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/alexanderad/conways-game-of-life.git"
},
"keywords": [
"nodejs",
"conways-game-of-life",
"experiments"
],
"author": "Alexander Shchapov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexanderad/conways-game-of-life/issues"
},
"homepage": "https://github.com/alexanderad/conways-game-of-life",
"dependencies": {
"express": "^4.10.6",
"morgan": "^1.5.0",
"pegjs": "^0.8.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"chai": "^1.10.0"
}
}