-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1022 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
{
"name": "hexaworld-mobile",
"version": "1.0.0",
"description": "mobile app for hexaworld",
"main": "www/index.js",
"scripts": {
"bundle-css": "sheetify -u sheetify-cssnext www/style.css > www/bundle.css",
"bundle-js": "browserify www/index.js > www/bundle.js",
"bundle": "npm run bundle-css & npm run bundle-js",
"web": "budo www/index.js:bundle.js --live --dir www",
"ios": "cordova emulate ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexaworld/hexaworld-mobile.git"
},
"keywords": [
"hexaworld"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hexaworld/hexaworld-mobile/issues"
},
"homepage": "https://github.com/hexaworld/hexaworld-mobile#readme",
"dependencies": {
"hexaworld-levels": "github:hexaworld/hexaworld-levels"
},
"devDependencies": {
"budo": "^8.0.0",
"sheetify": "^3.3.3",
"sheetify-cssnext": "^1.0.7",
"standard": "^5.4.1",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
}
}