-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"name": "boggle",
"private": true,
"description": "Boggle",
"repository": "github:scheibo/boggle",
"author": "Kirk Scheibelhut",
"license": "MIT",
"devDependencies": {
"@parcel/packager-raw-url": "2.12.0",
"@parcel/transformer-webmanifest": "2.12.0",
"@pkmn/eslint-config": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint": "<=8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"parcel": "^2.12.0",
"terser": "^5.31.3",
"typescript": "^5.5.3"
},
"scripts": {
"lint": "eslint --cache src --ext ts,js",
"fix": "eslint --fix src --ext ts,js",
"compile": "tsc -p .",
"test": "true",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "parcel index.html",
"build": "node build"
},
"eslintConfig": {
"extends": "@pkmn",
"rules": {
"@typescript-eslint/no-misused-promises": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/require-await": "off"
}
}
}