-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "internal-actions-public",
"version": "1.0.0",
"description": "A collection of GitHub actions for internal use with public and private repositories",
"scripts": {
"prepare": "husky",
"build": "npm --workspaces run build",
"test": "npm --workspaces run test"
},
"license": "MPL-2.0",
"workspaces": [
"./.github/actions/*"
],
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.3",
"@types/sinon": "^17.0.3",
"@vercel/ncc": "^0.38.2",
"chai": "^4.5.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.16.0"
},
"lint-staged": {
"*.{md,json,js,ts,html}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}