-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (44 loc) · 1.65 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
47
48
49
{
"author": "deformhead",
"bugs": {
"url": "https://github.com/deformhead/Systemic/issues"
},
"description": "game built with theatre (javascript es6 game framework)",
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"babel-loader": "8.0.5",
"electron": "5.0.8",
"electron-packager": "14.0.3",
"url-loader": "1.0.1",
"webpack": "4.18.0",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.8",
"webpack-merge": "4.1.4",
"webpack-notifier": "1.6.0"
},
"homepage": "https://github.com/deformhead/Systemic#readme",
"keywords": [
"theatre",
"game",
"framework"
],
"license": "MIT",
"main": "sources/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/deformhead/Systemic.git"
},
"scripts": {
"build": "npm run build:linux:64 && npm run build:windows:32 && npm run build:windows:64",
"build:linux:64": "electron-packager dist/ Systemic --arch=x64 --asar --out=build/ --overwrite --platform=linux",
"build:windows:32": "electron-packager dist/ Systemic --arch=ia32 --asar --out=build/ --overwrite --platform=win32",
"build:windows:64": "electron-packager dist/ Systemic --arch=x64 --asar --out=build/ --overwrite --platform=win32",
"dist": "webpack --config webpack.production.js",
"electron": "electron dist/",
"gh-pages": "",
"postinstall": "npm run dist",
"start": "webpack-dev-server --config webpack.development.js",
"test": "echo \"Hello, friend.\" && exit 0"
}
}