-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 956 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": "game-of-life",
"version": "1.0.0",
"description": "John Conway's \"Game of Life\" is a computer science classic from 1970. It's a program that simulates a cellular automaton, and has connections to all kinds of different aspects of computer science and nature.",
"main": "index.js",
"scripts": {
"dev": "parcel public/index.html -d dist/dev/ -p 5000",
"build": "parcel build public/index.html -d dist/production --no-source-maps --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TinySquid/game-of-life.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TinySquid/game-of-life/issues"
},
"homepage": "https://github.com/TinySquid/game-of-life#readme",
"dependencies": {
"dexie": "^3.0.2",
"unique-names-generator": "^4.3.1"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"sass": "^1.26.10"
}
}