-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "axe-html-reporter",
"version": "2.2.11",
"description": "The module that allows you to create HTML Report from raw accessibility aXe result object",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lpelypenko/axe-html-reporter"
},
"engines": {
"node": ">=8.9.0"
},
"keywords": [
"axe",
"report",
"test",
"accessibility"
],
"author": "Liliia Pelypenko ([email protected])",
"license": "MIT",
"files": [
"dist",
"src",
"test",
"types"
],
"bugs": {
"url": "https://github.com/lpelypenko/axe-html-reporter/issues"
},
"homepage": "https://github.com/lpelypenko/axe-html-reporter",
"scripts": {
"prebuild": "rm -rf dist build",
"copy": "cp -R ./src/util/template ./dist/util/template",
"build": "tsc --project tsconfig.build.json && npm run copy",
"test": "jest test",
"test:watch": "jest test --watch"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"axe-core": ">=3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mustache": "^4.0.1",
"@types/node": "^14.11.8",
"jest": "^29.7.0",
"prettier": "^2.1.2",
"ts-jest": "^29.2.4",
"typescript": "^4.0.3"
},
"dependencies": {
"mustache": "^4.0.1"
}
}