-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
97 lines (97 loc) · 3.64 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
{
"name": "owasp-zap-scan",
"version": "0.0.0-sementic-release",
"description": "OWASP ZAP Scanning in Visual Studio Team Services for Build & Release",
"main": "dist\\BuildTask\\OwaspZapScan\\owaspzapscan.js",
"scripts": {
"commit": "git cz",
"clean": "rimraf dist && npm run test-clean && npm run clean-js && npm run clean-map",
"clean-js": "rimraf BuildTask/**/*.js",
"clean-map": "rimraf BuildTask/**/*.map",
"lint": "tslint -c tslint.json BuildTask\\OwaspZapScan\\**\\*.ts",
"compile": "npm run lint && tsc --project ./BuildTask",
"move-npm": "mkdirp dist/BuildTask/OwaspZapScan && copyfiles \"./package.json\" dist/BuildTask/OwaspZapScan",
"move-task": "copyfiles \"./BuildTask/OwaspZapScan/**/!(*.ts)\" dist",
"restore-prod": "pushd \"dist/BuildTask/OwaspZapScan\" && npm install --only=production && popd",
"build": "npm run move-npm && npm run restore-prod && npm run lint && npm run compile && npm run move-task",
"build-clean": "npm run clean && npm run build",
"publish-local": "tfx build tasks upload --task-path ./dist/BuildTask/OwaspZapScan",
"semantic-release": "semantic-release pre && semantic-release post",
"test-clean": "rimraf spec",
"test-copy": "copyfiles -f \"./BuildTask/tests/testData/*.*\" spec/tests",
"test-build": "npm run test-clean && tsc --project ./BuildTask/tests && npm run test-copy",
"test-spec": "mocha spec/**/*.spec.js -R spec --bail",
"test-cov": "istanbul cover --include-all-sources --root ./spec --report lcovonly --dir ./spec/coverage node_modules/mocha/bin/_mocha -- spec/**/*.spec.js -R spec --bail",
"test-remap": "remap-istanbul -i spec/coverage/coverage.json -o spec/coverage/report -t html -e dist,typings,node_modules",
"test": "npm run test-build && npm run test-cov && npm run test-remap",
"test-dev": "npm run test-build && npm run test-spec",
"test-ci": "npm run test-build && npm run test-cov",
"test-libs": "snyk test",
"coverage-publish": "cat ./spec/coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/kasunkv/owasp-zap-vsts-task.git"
},
"keywords": [
"owasp",
"zap",
"security",
"pentesting",
"security-testing",
"security-scan",
"attack-proxy",
"web-security"
],
"author": "Kasun Kodagoda",
"license": "MIT",
"bugs": {
"url": "https://github.com/kasunkv/owasp-zap-vsts-task/issues"
},
"homepage": "https://github.com/kasunkv/owasp-zap-vsts-task#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@sentry/node": "^4.1.1",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"thread-sleep": "^2.0.0",
"vsts-task-lib": "^2.1.0",
"xmljson": "^0.2.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.10",
"@types/dotenv": "^4.0.3",
"@types/expect": "^1.20.2",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"@types/q": "^1.0.3",
"@types/request": "^2.0.0",
"@types/request-promise": "^4.1.36",
"@types/sinon": "^2.3.3",
"commitizen": "^2.9.6",
"copyfiles": "^1.2.0",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"dotenv": "^4.0.0",
"expect": "^1.20.2",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mkdirp": "^0.5.1",
"mocha": "^3.5.1",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"semantic-release": "^8.0.0",
"sinon": "^3.2.1",
"snyk": "^1.40.2",
"source-map-support": "^0.4.17",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^4.1.1",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.5.2"
}
}