-
Notifications
You must be signed in to change notification settings - Fork 818
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 998 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 998 Bytes
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
{
"version": "1.0.0",
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.2",
"@types/jest": "^30.0.0",
"@types/node": "^25.3.0",
"@types/plist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"cross-env": "^10.1.0",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"highlight.js": "^11.11.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:fix": "cross-env BASELINE_RECORD=true jest",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
}
}