This repository has been archived by the owner on Oct 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "flatworld",
"description": "Game engine for 2D turn-based strategy games in browsers",
"version": "0.0.0",
"main": "src/dist/flatworld.js",
"author": "Janne Hyytiä",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Hachitus/FlaTWorld.git"
},
"bugs": {
"url": "https://github.com/Hachitus/FlaTWorld/issues"
},
"homepage": "https://github.com/Hachitus/FlaTWorld",
"scripts": {
"start": "echo 'starting instance in http://localhost:9001/' && forever start startEngine.js --uid FlaTWorld",
"stop": "forever stop startEngine.js FlaTWorld",
"build": "gulp build",
"deploy": "gulp deploy",
"nextVersion": "echo 'MANUAL: npm version patch/minor/major && git tag -a ?.?.? -m 'comment' && git push --tags && update CHANGELOG && update roadmap if needed'",
"document": "yuidoc -t node_modules/yuidoc-theme-blue",
"showDocuments": "echo 'starting instance in http://localhost:9002/' && forever start startDocument.js --uid FlaTWorldDocument",
"init": "npm i -g forever && ln -s /usr/bin/nodejs /usr/bin/node && npm install"
},
"devDependencies": {
"babel-core": "^6.5.1",
"babel-plugin-transform-es2015-modules-umd": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"bower": "^1.7.2",
"browser-sync": "^2.11.1",
"express": "^4.12.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-cssmin": "^0.1.7",
"gulp-debug": "^2.1.2",
"gulp-rimraf": "^0.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-watch": "^4.3.5",
"jscs": "^2.3.0",
"jshint": "^2.8.0",
"yuidocjs": "^0.10.0"
}
}