This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.99 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
65
66
67
68
69
70
71
72
{
"name": "act-rules-implementation-axe-core",
"version": "1.0.0",
"description": "Implementation [report](./report.json) for [ACT Rules](https://github.com/act-rules/act-rules.github.io) test cases validated by [Axe](https://github.com/dequelabs/axe-core).",
"main": "src/cli.js",
"scripts": {
"build": "echo 'DEPRECATED; use the cli instead' && ./src/cli.js",
"test": "jest --coverage",
"format": "prettier --write *.{json,md,js} 'src/**/*.{json,md,js}'",
"debug": "node src/cli.js --ruleId 674b10 --testsJson ${PWD}'/testcases/testcases.json' --testsDir ${PWD}'/testcases' --siteUrl https://act-rules.github.io",
"lint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/act-rules/act-rules-implementation-axe-core.git"
},
"author": "",
"license": "ISC",
"bin": {
"act-rules-implementation-axe-core": "./src/cli.js"
},
"bugs": {
"url": "https://github.com/act-rules/act-rules-implementation-axe-core/issues"
},
"homepage": "https://github.com/act-rules/act-rules-implementation-axe-core#readme",
"dependencies": {
"assert": "^2.0.0",
"axe-core": "next",
"axe-puppeteer": "latest",
"commander": "^6.0.0",
"fs-extra": "^9.0.1",
"puppeteer": "2.1.1",
"static-server": "^2.2.1"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^24.8.0",
"jest-extended": "^0.11.5",
"lint-staged": "^10.2.11",
"prettier": "^1.19.1"
},
"jest": {
"verbose": true,
"bail": true,
"setupFilesAfterEnv": [
"jest-extended"
],
"testPathIgnorePatterns": [
"<rootDir>/src/__tests__/utils.js"
]
},
"prettier": {
"trailingComma": "none"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{html,js,jsx,json,md,scss,yml}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}