-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "wp-theme-auditor",
"version": "0.3.0",
"description": "Accessibility auditing tools for WordPress themes.",
"author": {
"name": "Ned Zimmerman",
"email": "[email protected]",
"url": "https://bight.ca"
},
"license": "GPL-2.0-or-later",
"keywords": [
"accessibility",
"axe",
"wordpress",
"wp-theme-auditor"
],
"homepage": "https://github.com/wpaccessibility/wp-theme-auditor#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:js"
],
"package.json": [
"npm run lint:pkg-json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpaccessibility/wp-theme-auditor.git"
},
"bugs": {
"url": "https://github.com/wpaccessibility/wp-theme-auditor/issues"
},
"bin": {
"create-test-cases": "./bin/create-test-cases.js"
},
"dependencies": {
"@wordpress/babel-preset-default": "^4.5.0",
"@wordpress/e2e-test-utils": "^2.3.0",
"@wordpress/e2e-tests": "^1.6.0",
"@wordpress/jest-console": "^3.3.0",
"@wordpress/jest-preset-default": "^5.1.0",
"@wordpress/jest-puppeteer-axe": "^1.3.0",
"@wordpress/scripts": "^4.1.0",
"chalk": "^2.4.2",
"core-js": "^3.2.1",
"handlebars": "^4.3.3",
"inquirer": "^7.0.0",
"jest-html-reporter": "^2.6.2"
},
"devDependencies": {
"husky": "^3.0.9",
"lint-staged": "^9.4.2"
},
"scripts": {
"lint:js": "wp-scripts lint-js .",
"lint:pkg-json": "wp-scripts lint-pkg-json .",
"test": "npm run -s lint:js && npm run -s lint:pkg-json"
}
}