forked from microsoft/axe-sarif-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"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",
"types": "dist/index.d.js",
"files": [
"dist/",
"LICENSE",
"README.md"
],
"dependencies": {
"axe-core": "^3.2.2"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/node": "^11.13.0",
"jest": "^24.5.0",
"jest-circus": "^24.5.0",
"jest-junit": "^6.3.0",
"license-check-and-add": "^2.3.6",
"lodash": "^4.17.11",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"ts-jest": "^24.0.1",
"tslint": "^5.15.0",
"tslint-microsoft-contrib": "^6.1.0",
"typemoq": "^2.1.0",
"typescript": "^3.4.1"
},
"scripts": {
"prebuild": "npm run 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",
"precheckin": "npm run format-check && npm run lint && npm run build && npm test && npm run 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",
"license-check-and-add-config": {
"folder": "./",
"license": "copyright-header.txt",
"exact_paths_method": "EXCLUDE",
"exact_paths": [
"./.git",
"./.github",
"./.vscode",
"./copyright-header.txt",
"./dist",
"./node_modules",
"./src/test-resources/",
"./test-results"
],
"file_type_method": "INCLUDE",
"file_types": [
".ts",
".d.ts",
".js",
".yaml",
".md",
".txt",
".xml"
],
"insert_license": false,
"license_formats": {
"yaml|npmrc": {
"eachLine": {
"prepend": "# "
}
},
"md": {
"prepend": "<!--",
"append": "-->"
},
"ts|d.ts|js": {
"eachLine": {
"prepend": "// "
}
}
}
}
}