forked from dequelabs/axe-core-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "axe-core-npm",
"private": true,
"license": "MPL-2.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "prettier --write .",
"lint": "eslint .",
"bootstrap": "lerna bootstrap",
"prepare": "husky install",
"precommit": "lint-staged"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.9",
"husky": "^8.0.0",
"lerna": "^5.6.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^17.0.0",
"typescript": "^4.8.4"
},
"prettier": {
"semi": true,
"singleQuote": true,
"printWidth": 80,
"bracketSpacing": true,
"useTabs": false,
"trailingComma": "none",
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,html}": [
"prettier --write"
]
},
"dependencies": {
"axe-test-fixtures": "github:dequelabs/axe-test-fixtures",
"browser-driver-manager": "^1.0.4"
}
}