-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.57 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
{
"name": "create-wp-theme-auditor",
"version": "0.2.0",
"description": "Add wp-theme-auditor to your project.",
"author": {
"name": "Ned Zimmerman",
"email": "[email protected]",
"url": "https://bight.ca"
},
"license": "GPL-2.0-or-later",
"keywords": [
"accessibility",
"axe",
"wordpress",
"wp-theme-auditor",
"nodejs",
"npm-package",
"npm-init"
],
"homepage": "https://github.com/wpaccessibility/create-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/create-wp-theme-auditor.git"
},
"bugs": {
"url": "https://github.com/wpaccessibility/create-wp-theme-auditor/issues"
},
"engines": {
"node": ">=8"
},
"main": "index.js",
"bin": "cli.js",
"dependencies": {
"execa": "^3.0.0",
"has-yarn": "^2.1.0",
"ora": "^4.0.2",
"path-exists": "^4.0.0",
"read-pkg-up": "^7.0.0",
"shelljs": "^0.8.3",
"write-pkg": "^4.0.0"
},
"devDependencies": {
"@wordpress/babel-preset-default": "^4.6.1",
"@wordpress/scripts": "^5.0.1",
"dot-prop": "^5.1.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"temp-write": "^4.0.0"
},
"scripts": {
"lint": "npm run lint:js && npm run lint:pkg-json",
"lint:js": "wp-scripts lint-js .",
"lint:pkg-json": "wp-scripts lint-pkg-json .",
"test": "npm run lint && jest"
}
}