-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.35 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
{
"name": "ritual-crawler",
"version": "1.0.0",
"description": "Ritualistic Dungeon Crawler",
"main": "main.js",
"scripts": {
"build": "npm run min && npm run clean && npm run temp && npm run dist",
"temp": "npm run temp-mkdir && npm run temp-cp",
"temp-mkdir": "mkdir -p temp/lib/plugins",
"temp-cp": "cp lib/plugins/underscore.js temp/lib/plugins/underscore.js && cp -rf media/ temp/media/ && cp game.min.js temp && cp index.html temp && cp main.js temp && cp package.json temp && cp style.css temp",
"clean": "rm -rf temp/ && rm -rf dist/",
"dist": "./node_modules/.bin/electron-packager ./temp 'Ritual Crawler' --version=0.36.5 --all --app-category-type=public.app-category.games --app-version=1.0.0 --out=dist --prune --asar",
"min": "php tools/bake.php lib/impact/impact.js lib/game/main.js game.min.js",
"start": "npm run min && ./node_modules/.bin/electron main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Myztiq/ritual-crawler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Myztiq/ritual-crawler/issues"
},
"homepage": "https://github.com/Myztiq/ritual-crawler#readme",
"devDependencies": {
"electron-packager": "^5.2.1",
"electron-prebuilt": "^0.36.0"
}
}