-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "openrct2-park-rating-inspector",
"author": "Basssiiie",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "nodemon --watch ./src --ext js,ts --exec \"npm run build:dev\"",
"build": "npm run lint && rollup --config rollup.config.js --environment BUILD:production",
"build:dev": "rollup --config rollup.config.js",
"lint": "eslint ./src --ext .js --ext .ts",
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Basssiiie/OpenRCT2-ParkRatingInspector.git"
},
"homepage": "https://github.com/Basssiiie/OpenRCT2-ParkRatingInspector#readme",
"bugs": {
"url": "https://github.com/Basssiiie/OpenRCT2-ParkRatingInspector/issues"
},
"dependencies": {
"openrct2-flexui": "^0.1.0-prerelease.13"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"ava": "^5.3.1",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^2.0.22",
"nyc": "^15.1.0",
"openrct2-mocks": "^0.1.0",
"platform-folders": "^0.6.0",
"rollup": "^3.25.3",
"tslib": "^2.3.1",
"tsx": "^3.12.7",
"typescript": "^5.1.3"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"tests/**/*.tests.ts"
],
"nodeArguments": [
"--loader=tsx"
],
"require": [
"./tests/_setup.js"
],
"verbose": true
}
}