-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 951 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
38
39
40
41
42
43
44
{
"name": "hexular",
"version": "0.3.0-alpha",
"description": "An extensible platform for hexagonal cellular automata",
"main": "index.js",
"scripts": {
"start": "node bin/server.js",
"build": "node bin/build.js",
"doc": "bin/doc.sh",
"deploy": "./bin/deploy.sh",
"clean": "./bin/clean.sh"
},
"files": [
"/index.js",
"/hexular"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hexagrahamaton/hexular.git"
},
"keywords": [
"hexagon",
"hexagons",
"hexagonal",
"cellular",
"automaton",
"automata",
"ca",
"math"
],
"author": "graham",
"license": "HAL",
"bugs": {
"url": "https://github.com/hexagrahamaton/hexular/issues"
},
"homepage": "https://hexagrahamaton.github.io/hexular/",
"devDependencies": {
"chokidar": "^3.3.1",
"glob": "^7.1.6",
"jsdoc": "^3.6.4",
"static-server": "^2.2.1",
"yaml": "^1.7.2"
}
}