-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1003 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
{
"name": "a11y-issue-categorizer",
"version": "1.0.0",
"description": "",
"author": "Brandon Fulco <[email protected]>",
"license": "Unlicensed",
"scripts": {
"lint": "eslint .",
"fmt": "prettier --write .",
"prebuild": "rimraf dist",
"build": "ncc build --source-map src/main.ts"
},
"keywords": [],
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.15",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.32.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}