-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 KB
/
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
45
46
{
"name": "hexaworld-editor",
"version": "1.0.0",
"description": "editor for designing hexaworlds",
"main": "index.js",
"scripts": {
"start": "npm run watch & npm run server",
"server": "nodemon --exec http-server -e js,css,html",
"watch": "watchify index.js -o bundle.js",
"bundle": "browserify index.js -o bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexaworld/hexaworld-editor.git"
},
"keywords": [
"game",
"hexagon",
"hexaworld",
"crtrdg",
"2d",
"geometry",
"editor"
],
"author": "freeman-lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/hexaworld/hexaworld-editor/issues"
},
"homepage": "https://github.com/hexaworld/hexaworld-editor#readme",
"dependencies": {
"crtrdg-gameloop": "^0.2.2",
"crtrdg-keyboard": "0.0.2",
"interact.js": "^1.2.6",
"lodash": "^3.10.1",
"popupjs": "^1.3.0",
"transformist": "^1.0.0"
},
"devDependencies": {
"browserify": "^12.0.1",
"http-server": "^0.8.5",
"nodemon": "^1.8.1",
"watchify": "^3.6.1"
}
}