-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 850 Bytes
/
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
{
"name": "template",
"version": "0.0.1",
"main": "lib/index.js",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"test": "jest --detectOpenHandles --passWithNoTests",
"build": "tsc",
"postbuild": "tsc --noEmit --p tsconfig.lib.json",
"lint": "eslint src --fix",
"release": "npx standard-version --no-verify",
"coverage": "npm test -- --coverage --no-cache"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.9.3",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"eslint": "9.15.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "28.9.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "^3.1.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}