forked from crawlkit/runner-axe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
{
"name": "crawlkit-runner-axe",
"description": "A CrawlKit runner for auditing a website with aXe",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"tdd": "mocha --watch --reporter min",
"pretest": "validate-commit-msg",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/crawlkit/runner-axe.git"
},
"keywords": [
"crawlkit",
"a11y",
"accessibility",
"aXe"
],
"author": "Joscha Feth <[email protected]>",
"license": "MIT",
"files": [
"src",
"examples/tonic.js"
],
"bugs": {
"url": "https://github.com/crawlkit/runner-axe/issues"
},
"homepage": "https://github.com/crawlkit/runner-axe#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"crawlkit": "^2.0.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-mocha": "^3.0.0",
"eslint-plugin-react": "^4.3.0",
"freeport": "^1.0.5",
"http-server": "^0.9.0",
"mocha": "^3.3.0",
"semantic-release": "^6.3.2",
"validate-commit-message": "^3.0.1"
},
"dependencies": {
"axe-core": "^2.1.7"
},
"peerDependencies": {
"crawlkit": ">= 1.4.0"
},
"engines": {
"node": ">=4.2"
},
"tonicExampleFilename": "examples/tonic.js",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.0.0-development"
}