-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.78 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
{
"name": "metal-a11y-checker",
"version": "1.0.5",
"description": "Accessibility test module for components",
"main": "index.js",
"bin": {
"metal-a11y": "./bin/metal-a11y"
},
"scripts": {
"ci": "prettier-eslint src/**/*.js --list-different && npm run lint && npm run test",
"build": "rimraf build/ && babel src/ --out-dir build/",
"format": "prettier-eslint --write src/**/*.js",
"lint": "eslint src/**/*.js",
"precommit": "lint-staged",
"postinstall": "npm run build",
"test": "echo 'No test specified yet!'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metal/metal-a11y-checker.git"
},
"keywords": [
"accessibility",
"a11",
"axe",
"axe-core"
],
"author": "Bence Varga <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/metal/metal-a11y-checker/issues"
},
"homepage": "https://github.com/metal/metal-a11y-checker#readme",
"dependencies": {
"axe-core": "^2.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chalk": "^2.1.0",
"detect-port": "^1.2.1",
"directory-list": "^1.1.1",
"es6-promise": "^4.1.1",
"events": "^1.1.1",
"express": "^4.15.4",
"fs": "0.0.1-security",
"path": "^0.12.7",
"puppeteer": "^0.10.2",
"yargs": "^9.0.1"
},
"devDependencies": {
"eslint": "^4.7.2",
"eslint-config-liferay": "^1.0.2",
"husky": "^0.14.3",
"lint-staged": "^4.2.2",
"prettier-eslint-cli": "^4.3.2",
"rimraf": "^2.6.2"
},
"lint-staged": {
"*.js": [
"prettier-eslint --write src/**/*.js",
"git add"
]
}
}