-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "arkona2",
"version": "0.1.0",
"description": "retro isometric rpg",
"author": "Gabor Torok <[email protected]>",
"repository": "https://github.com/uzudil/arkona2",
"main": "start.js",
"scripts": {
"dev": "webpack",
"test": "standard",
"pack": "build -mwl --dir",
"dist": "build -mwl"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"electron": "~1.6.2",
"electron-connect": "~0.6.1",
"electron-connect-webpack-plugin": "^0.1.1",
"electron-builder": "^17.3.1",
"eslint": "^3.15.0",
"eslint-loader": "^1.6.1",
"expose-loader": "^0.7.1",
"standard": "^8.6.0",
"webfontloader": "^1.6.27",
"webpack": "^1.13.3"
},
"dependencies": {
"a-star": "^0.2.0",
"fs-extra": "^3.0.1",
"jquery": "^3.1.1",
"phaser": "^2.6.2",
"stats.js": "^0.17.0"
},
"build": {
"appId": "com.arkona.Arkona",
"productName": "Arkona II",
"copyright": "Copyright © 2017 Gabor Torok.",
"files": [
"out",
"node_modules",
"index.html",
"start.js",
"assets"
],
"mac": {
"category": "public.app-category.games"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": null,
"nsis": null,
"linux": {
"target": [
"AppImage",
"deb"
]
}
}
}