forked from microsoft/axe-sarif-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
72
73
{
"name": "axe-sarif-converter",
"version": "0.0.0-managed-by-semantic-release",
"description": "Convert axe-core accessibility scan results to the SARIF format",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.js",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">= 8"
},
"dependencies": {
"@types/sarif": ">=2.1.1 <=2.1.2",
"axe-core": "^3.2.2",
"yargs": "^15.0.2"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@types/yargs": "^13.0.2",
"jest": "^24.8.0",
"jest-circus": "^24.8.0",
"jest-junit": "^10.0.0",
"license-check-and-add": "^3.0.3",
"lodash": "^4.17.15",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.18",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typemoq": "^2.1.0",
"typescript": "^3.5.3"
},
"scripts": {
"prebuild": "yarn clean",
"build": "tsc -p .",
"clean": "rimraf dist/* test-results/*",
"test": "jest",
"lint": "tslint -p .",
"format": "prettier --config prettier.config.js --write \"**/*\"",
"format-check": "prettier --config prettier.config.js --check \"**/*\"",
"copyrightheaders": "license-check-and-add check -f copyright-header.config.json",
"precheckin": "yarn format-check && yarn lint && yarn build && yarn test && yarn copyrightheaders",
"watch:build": "tsc -p . --watch",
"watch:test": "jest --watch --coverage false --colors",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/axe-sarif-converter.git"
},
"keywords": [
"MIT",
"axe-core",
"axe",
"sarif",
"reporter",
"coverter",
"accessibility"
],
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/axe-sarif-converter/issues"
},
"homepage": "https://github.com/Microsoft/axe-sarif-converter#readme"
}