-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.98 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
{
"name": "screeps-arena-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": "eslint \"src/**/*.ts\"",
"format": "prettier --write --ignore-unknown --ignore-path .gitignore '**/*'",
"build": "rollup -c --config-",
"test": "npm run test-unit",
"test-unit": "mocha test/unit/**/*.ts",
"watch": "rollup -cw --config-"
},
"repository": {
"type": "git",
"url": "git+https://github.com/screepers/screeps-arena-typescript-starter.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/screepers/screeps-arena-typescript-starter/issues"
},
"homepage": "https://github.com/screepers/screeps-arena-typescript-starter#readme",
"engines": {
"node": "10.x || 12.x || 16.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/node": "^13.13.1",
"@types/screeps-arena": "screepers/typed-screeps-arena#develop",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.2.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"fast-glob": "^3.2.5",
"lodash": "^3.10.1",
"mocha": "^5.2.0",
"prettier": "^2.6.2",
"rollup": "^2.6.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-screeps": "^1.0.0",
"rollup-plugin-typescript2": "^0.31.2",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.6.3"
},
"dependencies": {
"source-map": "~0.6.1"
}
}