-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 3.46 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
{
"name": "screeps-script",
"version": "0.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 -c .eslintrc.yml \"src/**/*.ts\"",
"lint-fix": "eslint -c .eslintrc.yml \"src/**/*.ts\" --fix",
"lint-all": "eslint -c .eslintrc.yml \"src/**/*.ts\" && eslint -c .eslintrc.yml \"test/**/*.ts\"",
"lint-fix-all": "eslint -c .eslintrc.yml \"src/**/*.ts\" --fix && eslint -c .eslintrc.yml \"test/**/*.ts\" --fix",
"build": "rollup -c rollup.config.ts",
"push-main": "rollup -c rollup.config.ts --environment DEST:main",
"push-pserver": "rollup -c rollup.config.ts --environment DEST:pserver",
"push-sim": "rollup -c rollup.config.ts --environment DEST:sim",
"push-season": "rollup -c rollup.config.ts --environment DEST:season",
"test": "npm run test-unit && npm run test-integration ",
"test-unit": "jest test/unit",
"test-integration": "cross-env NODE_ENV=mockup jest test/integration",
"test-c": "jest --coverage test/unit/**/*.test.ts",
"watch-main": "rollup -c rollup.config.ts -w --environment DEST:main",
"watch-pserver": "rollup -c rollup.config.ts -w --environment DEST:pserver",
"watch-sim": "rollup -c rollup.config.ts -w --environment DEST:sim",
"watch-season": "rollup -c rollup.config.ts -w --environment DEST:season",
"release": "standard-version",
"preinstall": "npx force-resolutions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LokiSharp/ScreepsScript.git"
},
"author": "LokiSharp",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/LokiSharp/ScreepsScript/issues"
},
"homepage": "https://github.com/LokiSharp/ScreepsScript#readme",
"engines": {
"node": "16.x || 18.x || 20.x"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@screeps/common": "^2.15.2",
"@types/fs-extra": "^9.0.8",
"@types/jest": "^26.0.20",
"@types/lodash": "3.10.2",
"@types/node": "^14.14.10",
"@types/screeps": "^3.3.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@typescript-eslint/typescript-estree": "^6.7.4",
"commitizen": "^4.2.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^5.0.0",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"jest-environment-jsdom-fifteen": "^1.0.2",
"lodash": "^3.10.1",
"prettier": "^3.0.3",
"rollup": "^2.34.2",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-nodent": "^0.2.2",
"rollup-plugin-screeps": "^1.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"screeps-server-mockup": "^1.5.1",
"standard-version": "^9.0.0",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.0",
"typescript": "~4.5.0"
},
"dependencies": {
"source-map": "~0.6.1"
},
"resolutions": {
"isolated-vm": "^4.6.0",
"nan": "^2.18.0",
"node-gyp": "^9.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "18.18.0"
}
}