-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
{
"name": "crawlkit-runner-htmlcs",
"description": "A CrawlKit runner for running the HTML Codesniffer",
"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-htmlcs.git"
},
"keywords": [
"crawlkit",
"a11y",
"accessibility",
"phantom",
"htmlcs",
"sniffer"
],
"author": "Joscha Feth <[email protected]>",
"license": "MIT",
"files": [
"src",
"examples/tonic.js"
],
"bugs": {
"url": "https://github.com/crawlkit/runner-htmlcs/issues"
},
"homepage": "https://github.com/crawlkit/runner-htmlcs#readme",
"devDependencies": {
"almond": "^0.3.2",
"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": "^4.3.5",
"validate-commit-message": "^3.0.1"
},
"dependencies": {
"HTML_CodeSniffer": "squizlabs/HTML_CodeSniffer#610cdf1",
"css-selector-generator": "^1.0.2",
"es6-promise": "^3.1.2",
"glob": "^7.0.3",
"html-context": "^1.0.6",
"keymirror": "^0.1.1"
},
"peerDependencies": {
"crawlkit": ">= 1.2.2"
},
"engines": {
"node": ">=4.2"
},
"tonicExampleFilename": "examples/tonic.js",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}