-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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": "a11y-auditor",
"version": "1.0.0",
"description": "a11y and semantic auditions per page",
"main": "src/index.js",
"engines": {
"node": "^9.8.0"
},
"scripts": {
"test": "jest",
"coverage": "jest && codecov",
"start": "micro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atilafassina/a11y-auditor.git"
},
"keywords": ["a11y", "pa11y", "semantic", "testing", "accessibility"],
"author": "@atilafassina",
"license": "ISC",
"bugs": {
"url": "https://github.com/atilafassina/a11y-auditor/issues"
},
"homepage": "https://github.com/atilafassina/a11y-auditor#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.5",
"micro": "^9.1.4",
"node-fetch": "^2.1.2",
"pa11y": "^5.0.3",
"request-promise": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/clean-slate-lint",
"pre-rewrite": "./node_modules/.bin/clean-slate-lint"
}
},
"devDependencies": {
"clean-slate-lint": "^1.0.6",
"codecov": "^3.0.0",
"eslint-plugin-jest": "^21.15.0",
"jest": "^22.4.3",
"test-listen": "^1.1.0"
},
"eslintConfig": {
"plugins": ["jest"],
"globals": {
"fetch": true
},
"env": {
"jest/globals": true
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/mocks/"
]
}
}