generated from screepers/screeps-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@brisberg/amber",
"version": "0.1.0",
"description": "Amber AI is a set of AI Code for playing the Screeps MMO",
"//": "If you add or change the names of destinations in screeps.json, make sure you update these scripts to reflect the changes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"screeps",
"typescript"
],
"author": "Brandon Risberg",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/brisberg/amber.git"
},
"bugs": {
"url": "https://github.com/brisberg/amber/issues"
},
"homepage": "https://github.com/brisberg/amber#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": "10.x"
},
"scripts": {
"build": "rollup -c",
"push-main": "rollup -c --environment DEST:main",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-sim": "rollup -c --environment DEST:sim",
"push-season": "rollup -c --environment DEST:season",
"push-local": "rollup -c && cp dist/* /Users/brisberg/Library/Application\\ Support/Screeps/scripts/screeps.com/sim/",
"test": "yarn run test-unit && yarn run test-integration",
"test-unit": "jest",
"test-unit-watch": "jest --watch",
"test-unit-cov": "jest --coverage",
"test-integration": "yarn build && jest --config=jest.config.integration.js --runInBand",
"watch-main": "rollup -cw --environment DEST:main",
"watch-pserver": "rollup -cw --environment DEST:pserver",
"watch-sim": "rollup -cw --environment DEST:sim",
"watch-season": "rollup -cw --environment DEST:season",
"lint": "eslint \"src/**/*.ts\""
},
"dependencies": {
"source-map": "^0.6.1"
},
"devDependencies": {
"@brisberg/screeps-server-mockup": "^1.6.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-typescript": "^5.0.1",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.149",
"@types/node": "^10.17.17",
"@types/screeps": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"clang-format": "^1.4.0",
"eslint": "^7.3.1",
"eslint-config-google": "^0.14.0",
"jest": "^26.1.0",
"lodash": "^4.17.21",
"rollup": "^2.18.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-screeps": "^1.0.0",
"screeps-jest": "eduter/screeps-jest#1.2.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.6"
}
}