forked from tubbo/openrct2-benchwarmer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.1 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
{
"name": "openrct2-benchwarmer",
"version": "0.4.1",
"description": "Add benches and trash cans to all of your paths with one click",
"main": "index.js",
"scripts": {
"build": "rollup -c && cpy ./build/benchwarmer.js \"${OPENRCT2_DIR}/plugin\" --rename=benchwarmer.js",
"test": "eslint src",
"watch": "npm-watch",
"dev": "yarn watch build",
"clean": "rm -rf build",
"start": "yarn build && $OPENRCT2_BIN intro",
"release": "node bin/release.js"
},
"watch": {
"build": "src/*.js"
},
"author": "Tom Scott <tubbo@psychedeli.ca>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"cpy-cli": "^3.1.1",
"eslint": "^7.7.0",
"npm-watch": "^0.6.0",
"rollup": "^2.26.2"
},
"dependencies": {
"lodash.includes": "^4.3.0",
"polyfill-array-includes": "^2.0.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "babel-eslint",
"rules": {
"semi": [
"error",
"never"
],
"quotes": [
"error",
"double"
],
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none"
}
],
"no-trailing-spaces": [
"error"
],
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
],
"prefer-const": [
"error"
],
"getter-return": [
"error"
],
"curly": [
"error",
"multi-line"
]
},
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"sourceType": "module"
},
"globals": {
"registerPlugin": true,
"ui": true,
"map": true,
"park": true,
"context": true
}
}
}