-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 4.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "screeps-typescript-starter-modded",
"version": "1.2.15",
"description": "Screeps TS starter slightly modded",
"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",
"repository": {
"type": "git",
"url": "git+https://github.com/Kaimodo/screeps-typescript-starter-modded.git"
},
"author": "Kaimodo",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Kaimodo/screeps-typescript-starter-modded/issues"
},
"homepage": "https://github.com/Kaimodo/screeps-typescript-starter-modded#readme",
"engines": {
"node": "8.x || 12.x"
},
"scripts": {
"rollup-help": "rollup --help",
"lint": "eslint \"src/**/*.ts\"",
"build": "rollup -c",
"upd-patch": "npm version patch && npm run changelog",
"upd-minor": "npm version minor && npm run changelog",
"upd-mayor": "npm version mayor && npm run changelog",
"push-main": "rollup -c --environment DEST:main",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-Onlinepserver": "rollup -c --environment DEST:onlinepserver",
"push-azure": "rollup -c --environment DEST:azure",
"push-season": "rollup -c --environment DEST:season",
"push-sim": "rollup -c --environment DEST:sim",
"test": "npm run test-unit",
"test-unit": "mocha test/unit/**/*.ts",
"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-onlinepserver": "rollup -cw --environment DEST:onlinepserver",
"watch-season": "rollup -cw --environment DEST:season",
"watch-sim": "rollup -cw --environment DEST:sim",
"create-flow-chart": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./createSVG.ps1",
"changelog": "auto-changelog --template changelog-template.hbs -p -u --commit-limit false",
"changelog-debug": "auto-changelog --template changelog-template.hbs -p --template json --output changelog-data.json",
"create-typedoc-files": "typedoc --options ./typedocconfig.ts"
},
"auto-changelog": {
"commitLimit": false,
"unreleased": true,
"issueUrl": "https://github.com/Kaimodo/screeps-typescript-starter-modded/issues/{id}",
"replaceText": {
"[Ff]eature:": "",
"[Ff]ix:": "",
"[Bb]reak:": "",
"([A-Z]+-\\d+)": "[$1](https://github.com/Kaimodo/screeps-typescript-starter-modded/issues/$1) - "
},
"includeBranch": [
"master"
]
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/chai": "^4.1.6",
"@types/lodash": "3.10.2",
"@types/mocha": "^5.2.5",
"@types/node": "^13.13.1",
"@types/screeps": "^3.2.3",
"@types/screeps-profiler": "^1.2.0",
"@types/sinon": "^5.0.5",
"@types/sinon-chai": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"@typescript-eslint/typescript-estree": "^4.29.1",
"auto-changelog": "^2.3.0",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"js2flowchart": "^1.3.2",
"lodash": "^3.10.1",
"mocha": "^5.2.0",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-version-injector": "^1.3.3",
"rollup-plugin-visualizer": "^5.5.2",
"screeps-profiler": "^2.0.1",
"sinon": "^6.3.5",
"sinon-chai": "^3.2.0",
"ts-node": "^10.2.0",
"tsconfig-paths": "^3.10.1",
"typedoc": "^0.22.9",
"typedoc-plugin-markdown": "^3.11.7",
"typedoc-plugin-merge-modules": "^3.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"screeps-inscribe": "^0.2.0",
"source-map": "~0.6.1"
}
}