1
0
Fork 0
spacetac/package.json

46 lines
1.3 KiB
JSON
Raw Normal View History

2016-10-26 21:15:04 +00:00
{
"name": "spacetac",
"version": "0.1.0",
"description": "A tactical RPG set in space",
2018-03-06 23:52:52 +00:00
"main": "out/build.js",
2016-10-26 21:15:04 +00:00
"scripts": {
2018-03-08 19:16:05 +00:00
"build": "run build",
2018-04-04 21:57:28 +00:00
"test": "run ci",
2018-03-08 19:16:05 +00:00
"start": "run continuous",
2017-11-29 17:11:17 +00:00
"codecov": "remap-istanbul -i out/coverage/coverage.json -o out/coverage/mapped.json -t json && codecov -f out/coverage/mapped.json",
2018-06-26 21:50:51 +00:00
"deploy": "run deploy",
"deployx": "run deployx"
2016-10-26 21:15:04 +00:00
},
"repository": {
"type": "git",
"url": "https://code.thunderk.net/michael/spacetac.git"
},
"author": "Michael Lemaire",
"license": "MIT",
"devDependencies": {
2018-06-04 08:27:52 +00:00
"@types/jasmine": "^2.8.8",
"codecov": "^3.0.2",
"gamefroot-texture-packer": "github:Gamefroot/Gamefroot-Texture-Packer#f3687111afc94f80ea8f2877c188fb8e2004e8ff",
2018-03-08 19:16:05 +00:00
"glob": "^7.1.2",
"glob-watcher": "^5.0.1",
2018-03-11 22:19:45 +00:00
"jasmine": "^3.1.0",
2018-05-02 20:42:38 +00:00
"karma": "^2.0.2",
2018-07-20 15:52:48 +00:00
"karma-chrome-launcher": "^2.2.0",
2018-06-04 08:27:52 +00:00
"karma-coverage": "^1.1.2",
2018-05-02 20:42:38 +00:00
"karma-jasmine": "^1.1.2",
2018-01-31 18:54:01 +00:00
"karma-spec-reporter": "^0.0.32",
"live-server": "1.2.0",
2018-05-02 20:42:38 +00:00
"remap-istanbul": "^0.11.1",
"runjs": "^4.3.2",
2018-06-04 08:27:52 +00:00
"shelljs": "^0.8.2",
"typescript": "^2.9.1",
2018-07-20 19:17:25 +00:00
"uglify-es": "^3.3.9"
},
"dependencies": {
2018-03-11 22:19:45 +00:00
"jasmine-core": "^3.1.0",
2018-06-04 08:27:52 +00:00
"parse": "^1.11.1",
2018-06-26 22:06:13 +00:00
"phaser": "^3.10.1",
"process-pool": "^0.3.5"
2016-10-26 21:15:04 +00:00
}
2018-06-26 22:06:13 +00:00
}