-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.71 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
{
"name": "@sephiroth-j/node-dependency-track-upload",
"version": "0.2.0-beta",
"description": "Node.js plugin to integrate with Dependency-Track server to submit dependency manifests and gather project metrics.",
"main": "src/DTrackApi.js",
"scripts": {
"start": "node src/bin/dtrack-upload.js",
"test": "mocha",
"coverage": "nyc npm run test",
"sonar": "mocha -R @danmasta/mocha-sonar"
},
"bin": {
"dtrack-upload": "./src/bin/dtrack-upload.js"
},
"keywords": [
"dependency-track",
"dependency",
"bom",
"owasp",
"sbom",
"node",
"cyclonedx"
],
"author": "Ronny Perinke",
"homepage": "https://github.com/sephiroth-j/node-dependency-track-upload",
"license": "Apache-2.0",
"bugs": "https://github.com/sephiroth-j/node-dependency-track-upload/issues",
"repository": "github:sephiroth-j/node-dependency-track-upload",
"config": {
"apiKey": null,
"url": null
},
"files": [
"src/"
],
"engines": {
"node": ">=12.4.0"
},
"mocha": {
"spec": "test/**/*.spec.js",
"reporter": "mocha-unfunk-reporter",
"reporter-options": "reporter=min",
"watch-files": [
"test/**/*.spec.js"
]
},
"nyc": {
"all": true,
"reporter": [
"text",
"cobertura",
"lcov"
]
},
"dependencies": {
"axios": "^0.21.1",
"axios-observable": "^1.1.3",
"cli-color": "^2.0.0",
"npm-conf": "^1.1.3",
"rxjs": "^7.3.0",
"semver": "^7.3.2",
"table": "^6.7.1",
"yargs": "^17.1.0"
},
"devDependencies": {
"@danmasta/mocha-sonar": "^1.0.0",
"chai": "^4.2.0",
"mocha": "^9.0.0",
"mocha-unfunk-reporter": "^0.4.0",
"nock": "^13.1.1",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
}
}