-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "@deque/axe-linter-action",
"version": "1.0.0",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "ncc build src/index.ts --license licenses.txt",
"lint": "eslint .",
"fmt": "prettier --write .",
"prepare": "husky",
"test": "mocha 'src/**/*.test.ts'",
"coverage": "c8 yarn test"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0",
"minimatch": "^9.0.3",
"node-fetch": "2"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/chai": "^5.0.1",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/nock": "^11.1.0",
"@types/node": "^22.13.1",
"@types/node-fetch": "^2.6.12",
"@types/sinon": "^17.0.3",
"@vercel/ncc": "^0.38.3",
"c8": "^10.1.3",
"chai": "4",
"eslint": "^9.20.0",
"eslint-plugin-mocha": "^10.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"nock": "^14.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0"
}
}