-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.55 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.55 KB
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
109
110
111
112
{
"name": "@trustify-da/trustify-da-javascript-client",
"version": "0.3.0",
"description": "Code-Ready Dependency Analytics JavaScript API.",
"license": "Apache-2.0",
"homepage": "https://github.com/guacsec/trustify-da-javascript-client#README.md",
"bugs": "https://github.com/guacsec/trustify-da-javascript-client/issues",
"repository": "github:guacsec/trustify-da-javascript-client",
"keywords": [
"analysis",
"codeready",
"exhort",
"secure",
"supply-chain",
"vulnerability",
"trustify",
"dependency analytics"
],
"engines": {
"node": ">= 20.0.0",
"npm": ">= 11.5.1"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"bin": "dist/src/cli.js",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"!*",
"dist/**/*",
"config/**/*"
],
"scripts": {
"lint": "eslint src test --ext js",
"lint:fix": "eslint src test --ext js --fix",
"test": "c8 npm run tests",
"tests": "mocha --config .mocharc.json --grep \".*analysis module.*\" --invert",
"tests:rep": "mocha --reporter-option maxDiffSize=0 --reporter json > unit-tests-result.json",
"precompile": "rm -rf dist",
"compile": "tsc -p tsconfig.json"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@cyclonedx/cyclonedx-library": "^6.13.0",
"eslint-import-resolver-typescript": "^4.4.4",
"fast-toml": "^0.5.4",
"fast-xml-parser": "^5.3.4",
"help": "^3.0.2",
"https-proxy-agent": "^7.0.6",
"node-fetch": "^3.3.2",
"packageurl-js": "~1.0.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@trustify-da/trustify-da-api-model": "^2.0.1",
"@types/node": "^20.17.30",
"@types/which": "^3.0.4",
"babel-plugin-rewire": "^1.2.0",
"c8": "^11.0.0",
"chai": "^4.3.7",
"eslint": "^8.42.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.1",
"esmock": "^2.6.2",
"mocha": "^10.2.0",
"msw": "^2.12.7",
"sinon": "^15.1.2",
"sinon-chai": "^3.7.0",
"typescript": "^5.1.3",
"which": "^5.0.0"
},
"mocha": {
"check-leaks": false,
"color": true,
"extension": "js",
"fail-zero": true,
"recursive": true,
"ui": "tdd"
},
"c8": {
"all": true,
"check-coverage": true,
"clean": true,
"include": [
"src/**"
],
"exclude": [
"src/cli.js",
"src/index.js",
"src/analysis.js",
"src/providers/java_maven.js",
"src/providers/javascript_npm.js"
],
"lines": 82,
"reporter": [
"html",
"json",
"text"
]
},
"eslintIgnore": [
"index.js"
],
"resolutions": {
"@hapi/joi": "17.1.1"
}
}