66 lines
2.2 KiB
JSON
66 lines
2.2 KiB
JSON
{
|
|
"name": "screeps-typescript-starter",
|
|
"version": "3.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"//": "If you add or change the names of destinations in screeps.json, make sure you update these scripts to reflect the changes",
|
|
"scripts": {
|
|
"lint": "tslint -p tsconfig.json \"src/**/*.ts\"",
|
|
"build": "rollup -c",
|
|
"push-main": "rollup -c --environment DEST:main",
|
|
"push-pserver": "rollup -c --environment DEST:pserver",
|
|
"push-sim": "rollup -c --environment DEST:sim",
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
"test": "npm run test-unit",
|
|
"test-unit": "rollup -c rollup.test-unit-config.js && mocha dist/test-unit.bundle.js",
|
|
"test-integration": "echo 'See docs/in-depth/testing.md for instructions on enabling integration tests'",
|
|
"watch-main": "rollup -cw --environment DEST:main",
|
|
"watch-pserver": "rollup -cw --environment DEST:pserver",
|
|
"watch-sim": "rollup -cw --environment DEST:sim"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/screepers/screeps-typescript-starter.git"
|
|
},
|
|
"author": "",
|
|
"license": "Unlicense",
|
|
"bugs": {
|
|
"url": "https://github.com/screepers/screeps-typescript-starter/issues"
|
|
},
|
|
"homepage": "https://github.com/screepers/screeps-typescript-starter#readme",
|
|
"engines": {
|
|
"node": "10.x"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-buble": "^0.21.3",
|
|
"@rollup/plugin-commonjs": "^20.0.0",
|
|
"@rollup/plugin-multi-entry": "^4.1.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
|
"@types/chai": "^4.1.6",
|
|
"@types/lodash": "^4.14.172",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.6.1",
|
|
"@types/screeps": "^3.1.3",
|
|
"@types/sinon": "^10.0.2",
|
|
"@types/sinon-chai": "^3.2.0",
|
|
"chai": "^4.2.0",
|
|
"lodash": "^4.17.21",
|
|
"mocha": "^9.0.3",
|
|
"prettier": "^2.3.2",
|
|
"rollup": "^2.56.2",
|
|
"rollup-plugin-clear": "^2.0.7",
|
|
"rollup-plugin-nodent": "^0.2.2",
|
|
"rollup-plugin-screeps": "^1.0.1",
|
|
"rollup-plugin-typescript2": "^0.30.0",
|
|
"sinon": "^11.1.2",
|
|
"sinon-chai": "^3.2.0",
|
|
"source-map": "^0.7.3",
|
|
"ts-node": "^10.2.0",
|
|
"tslint": "^6.1.1",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-plugin-prettier": "^2.3.0",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"dependencies": {}
|
|
}
|