-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.67 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "axe-api-team-public",
"version": "1.0.0",
"description": "Shared configuration, settings, and actions for the Axe API Team",
"repository": {
"type": "git",
"url": "git+https://github.com/dequelabs/axe-api-team-public.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/dequelabs/axe-api-team-public/issues"
},
"homepage": "https://github.com/dequelabs/axe-api-team-public#readme",
"workspaces": [
"./.github/actions/*"
],
"scripts": {
"prepare": "husky install",
"build": "npm --workspaces run build",
"test": "npm --workspaces run test"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@eslint/js": "^9.6.0",
"@octokit/types": "^13.5.0",
"@types/chai": "^4.3.11",
"@types/conventional-commits-parser": "^5.0.0",
"@types/mocha": "^10.0.7",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@vercel/ncc": "^0.38.1",
"chai": "^4.4.1",
"conventional-commit-types": "^3.0.0",
"conventional-commits-parser": "^5.0.0",
"dedent": "^1.5.1",
"eslint": "^9.6.0",
"glob": "^10.4.2",
"globals": "^15.7.0",
"husky": "^9.0.11",
"ignore": "^6.0.2",
"lint-staged": "^15.2.7",
"mocha": "^10.5.2",
"nyc": "^17.0.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.5",
"semver": "^7.6.3",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^8.0.0-alpha.26"
},
"lint-staged": {
"*.{md,json,js,ts,html}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}