1
0
Fork 0
spacetac/package.json

68 lines
1.8 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",
2019-11-21 22:14:27 +00:00
"main": "dist/spacetac.umd.js",
2016-10-26 21:15:04 +00:00
"scripts": {
2019-11-21 22:14:27 +00:00
"build": "microbundle build -f modern,umd",
"test": "jest",
"start": "run continuous",
"normalize": "tk-base",
"dev": "run-p dev:*",
"dev:test": "jest --watchAll",
"dev:build": "microbundle watch -f modern,umd",
"dev:serve": "live-server --host=localhost --port=5000 --no-browser --ignorePattern='.*\\.d\\.ts' dist",
"prepare": "npm run build",
"prepublishOnly": "npm test"
2016-10-26 21:15:04 +00:00
},
"repository": {
"type": "git",
2019-11-21 22:14:27 +00:00
"url": "https://code.thunderk.net/games/spacetac.git"
2016-10-26 21:15:04 +00:00
},
2019-11-21 22:14:27 +00:00
"author": {
"name": "Michaël Lemaire",
"url": "https://thunderk.net"
},
"license": "ISC",
2016-10-26 21:15:04 +00:00
"devDependencies": {
2019-05-06 17:14:12 +00:00
"@types/jasmine": "^3.3.12",
2019-11-21 22:14:27 +00:00
"@types/parse": "^2.9.0",
2018-06-04 08:27:52 +00:00
"gamefroot-texture-packer": "github:Gamefroot/Gamefroot-Texture-Packer#f3687111afc94f80ea8f2877c188fb8e2004e8ff",
2019-05-13 16:36:25 +00:00
"glob": "^7.1.4",
2019-05-06 17:14:12 +00:00
"glob-watcher": "^5.0.3",
"jasmine": "^3.4.0",
"jasmine-core": "^3.4.0",
2019-05-06 17:14:12 +00:00
"karma": "^4.1.0",
2019-05-13 21:17:58 +00:00
"karma-chrome-launcher": "^2.2.0",
2018-06-04 08:27:52 +00:00
"karma-coverage": "^1.1.2",
2019-05-06 17:14:12 +00:00
"karma-jasmine": "^2.0.1",
2018-01-31 18:54:01 +00:00
"karma-spec-reporter": "^0.0.32",
2019-05-13 21:17:58 +00:00
"process-pool": "^0.3.5",
2019-05-06 17:14:12 +00:00
"runjs": "^4.4.2",
"shelljs": "^0.8.3",
2019-11-21 22:14:27 +00:00
"tk-base": "^0.2.5"
},
"dependencies": {
2019-05-06 17:14:12 +00:00
"parse": "^2.4.0",
2019-11-21 22:14:27 +00:00
"phaser": "^3.20.1"
},
"dependenciesMap": {
"parse": "dist/parse.min.js",
"phaser": "dist/phaser.min.js"
2019-11-21 22:14:27 +00:00
},
"source": "src/index.ts",
"module": "dist/spacetac.modern.js",
"types": "dist/index.d.ts",
"files": [
"/src",
"/dist"
],
"bugs": {
"url": "https://gitlab.com/thunderk/spacetac/issues"
},
"homepage": "https://code.thunderk.net/tslib/spacetac",
"keywords": [
"typescript"
]
}