-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 881 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
{
"name": "conways-game-of-life-js",
"version": "1.0.0",
"description": "Conway's Game of Life is a cellular automation simulation, devised by the British mathematician, John Horton Conway.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc -w",
"build": "browserify app.ts -p [ tsify --noImplicitAny ] > bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradyshutt/Conways-Game-of-Life-JS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bradyshutt/Conways-Game-of-Life-JS/issues"
},
"homepage": "https://github.com/bradyshutt/Conways-Game-of-Life-JS#readme",
"devDependencies": {
"tsc": "^1.20150623.0"
},
"dependencies": {
"browserify": "^13.1.1",
"tsify": "^2.0.7",
"typescript": "^2.1.4"
}
}