forked from snyk/snyk-to-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.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
{
"name": "snyk-to-html",
"description": "Convert JSON output from `snyk test --json` into a static HTML report",
"main": "index.js",
"scripts": {
"tap": "COVERALLS_REPO_TOKEN=0 tap --timeout=180 --cov --coverage-report=text-summary test/*.test.js",
"test": "snyk test && npm run lint && npm run tap",
"lint": "jscs index.js -v && jscs `find ./lib -name '*.js'` -v",
"report": "node hbs.js > output/test-report.html && open output/test-report.html",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "",
"license": "ISC",
"dependencies": {
"handlebars": "^4.0.8",
"marked": "^0.3.6",
"moment": "^2.18.1",
"snyk": "^1.41.1",
"minimist": "^1.2.0"
},
"bin": {
"snyk-to-html": "./index.js"
},
"snyk": true,
"devDependencies": {
"jscs": "^3.0.7",
"semantic-release": "^6.3.6",
"tap": "^10.3.2",
"tap-only": "0.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/snyk/snyk-to-html.git"
}
}