forked from dequelabs/axe-core-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "axe-core-npm",
"private": true,
"license": "MPL-2.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fmt": "prettier --write *.{md,js,json} \"packages/**/*.{js,ts,tsx,html,json,md,css}\"",
"lint": "eslint *.js \"packages/**/*.{js,ts,tsx}\"",
"bootstrap": "lerna bootstrap"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"axe-core": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"lint-staged": "^10.5.4",
"prettier": "^2.3.2",
"react": "^16.14.0",
"typescript": "^3.9.10"
},
"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"
}
}