-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "axe-result-pretty-print",
"version": "1.0.1",
"description": "The module allows to make readable output for aXe core accessibility results from raw aXe result object.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lpelypenko/axe-result-pretty-print"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"axe",
"report",
"test",
"accessibility"
],
"author": "Liliia Pelypenko (liliia.pelypenko@gmail.com)",
"license": "MIT",
"files": [
"dist",
"src",
"test",
"types"
],
"bugs": {
"url": "https://github.com/lpelypenko/axe-result-pretty-print/issues"
},
"homepage": "https://github.com/lpelypenko/axe-result-pretty-print",
"scripts": {
"clean": "rm -rf dist build",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"test": "jest test",
"test:watch": "jest test --watch"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"axe-core": ">=3"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.11.8",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"chalk": "^4.1.0"
}
}