forked from vgrizly/rogalik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "rogalia",
"version": "0.39.0",
"main": "index.html?steam=true",
"description": "Rogalia sandbox mmorpg client",
"scripts": {
"steam": "gulp nwbuild",
"start": "node scripts/server.js",
"build": "npm run load-metadata && npm run compile",
"compile": "gulp",
"load-metadata": "curl -s http://quasar.rogalik.tatrix.org:8080/metadata > metadata.json",
"check-strict": "for i in `find src -name '*.js'`; do grep -q \"use strict\" $i || echo $i; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TatriX/rogalia.git"
},
"author": "Tatrix <[email protected]>",
"bugs": {
"url": "https://github.com/TatriX/rogalia/issues"
},
"homepage": "http://rogalia.ru",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"express": "^4.15.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-html-replace": "^1.6.2",
"gulp-less": "^3.3.2",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"less": "^2.7.2",
"nw-builder": "^3.4.1"
},
"chromium-args": "",
"window": {
"title": "Rogalia",
"icon": "assets/bg/icon.png",
"toolbar": false,
"frame": true,
"position": "center",
"transparent": false,
"no-edit-menu": true,
"fullscreen": true,
"min_width": 1280,
"min_height": 720
}
}