-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 942 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
33
34
35
36
37
38
39
{
"name": "github-actions",
"version": "1.0.15",
"description": "",
"main": "src/index.ts",
"scripts": {
"prepare": "husky",
"test": "jest",
"lint": "eslint .",
"build": "tsc --noEmit",
"release": "release-it --ci --github.update --verbose"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"jest --findRelatedTests --bail --passWithNoTests"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^9.3.0",
"globals": "^15.3.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"release-it": "^17.3.0",
"release-it-pnpm": "^4.6.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.11.0"
}
}