-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
111 lines (111 loc) · 2 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
111
{
"name": "screeps-bot-hivemind",
"version": "2.0.1",
"description": "",
"main": "dist/main.js",
"screeps_bot": true,
"repository": {
"type": "git",
"url": "git://github.com/Mirroar/hivemind.git"
},
"author": "David Franke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mirroar/hivemind/issues"
},
"engines": {
"node": "^16.0"
},
"scripts": {
"build": "rollup -c",
"test": "xo"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/lodash": "^3.10.6",
"@types/node": "^13.13.52",
"@types/screeps": "^3.3.3",
"eslint-import-resolver-typescript": "^2.7.1",
"grunt": "^1.4.1",
"grunt-screeps": "^1.5.0",
"grunt-ts": "^6.0.0-beta.22",
"lodash": "^3.0.0",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-screeps": "^1.0.1",
"rollup-plugin-typescript2": "^0.30.0",
"source-map": "~0.6.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"xo": "~0.43.0"
},
"xo": {
"rules": {
"brace-style": "off",
"@typescript-eslint/brace-style": [
"error",
"stroustrup"
],
"comma-dangle": [
"error",
"always-multiline"
],
"curly": [
"error",
"multi-line"
],
"import/no-unresolved": [
"error",
{
"ignore": [
"relations.local",
"settings.local"
]
}
],
"import/no-unassigned-import": [
"error",
{
"allow": [
"prototype/*",
"**/constants"
]
}
],
"prefer-destructuring": [
"error",
{
"array": false,
"object": false
}
],
"unicorn/prefer-node-protocol": [
"off"
],
"unicorn/no-array-callback-reference": [
"off"
],
"unicorn/no-array-method-this-argument": [
"off"
]
},
"globals": [
"_",
"Game",
"Memory"
],
"ignores": [
"snippets.js",
"mock/constants.ts",
"src/utils/Profiler"
],
"settings": {
"import/resolver": {
"typescript": {}
}
}
}
}