-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.21 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
{
"name": "the-international-screeps-bot",
"version": "3.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint **/*",
"lint-ci": "eslint '**/*'",
"lint-fix": "eslint **/* --fix",
"push-mmo": "rollup -c --environment DEST:mmo",
"push-pserver": "rollup -c --environment DEST:pserver",
"watch-mmo": "rollup -cw --environment DEST:mmo",
"watch-pserver": "rollup -cw --environment DEST:pserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarsonBurke/The-International-Screeps-Bot.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/CarsonBurke/The-International-Screeps-Bot/issues"
},
"homepage": "https://github.com/CarsonBurke/The-International-Screeps-Bot#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/chai": "^4.3.0",
"@types/lodash": "3.10.2",
"@types/mocha": "^5.2.5",
"@types/node": "^13.13.1",
"@types/screeps": "^3.3.0",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"chai": "^4.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsdoc": "^31.6.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-screeps": "^2.1.0",
"jest": "^27.1.0",
"lodash": "^3.10.1",
"mocha": "^5.2.0",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"ts-node": "^10.2.0",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
},
"dependencies": {
"source-map": "~0.6.1"
}
}