-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
113 lines (113 loc) · 2.99 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
109
110
111
112
113
{
"name": "auditjs",
"version": "4.0.46",
"description": "Audit dependencies to identify known vulnerabilities and maintenance problems",
"main": "./bin/index.js",
"bin": {
"auditjs": "./bin/index.js"
},
"files": [
"bin/**/*"
],
"preferGlobal": true,
"engines": {
"node": ">=8.0.0"
},
"resolutions": {
"braces": "3.0.3",
"hosted-git-info": "^3.0.8",
"y18n": "^5.0.8",
"minimatch": ">=3.0.5",
"semver": "^7.5.2",
"read-package-json": ">=7.0.0",
"glob": ">=9.3.5",
"cross-spawn": ">=7.0.5"
},
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"build": "tsc -p tsconfig.json",
"build-dev": "tsc -p tsconfig.development.json",
"coverage": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"generate-coverage-report": "nyc report --reporter=text-lcov > lcov.info",
"test-ci": "MOCHA_FILE=./reports/test-results.xml mocha -r ts-node/register src/**/*.spec.ts --reporter mocha-junit-reporter",
"lint": "eslint src/**/*.ts",
"start": "node ./bin/index.js",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"iq-scan": "npx auditjs@latest iq -a auditjs"
},
"keywords": [
"Audit",
"Scan",
"Vulnerability",
"CPE",
"CVE",
"CWE",
"OSSIndex",
"Artie",
"Nexus",
"Sonatype",
"SCA",
"SBOM",
"Security",
"Advisories"
],
"author": "Sonatype Community",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sonatype-nexus-community/auditjs.git"
},
"devDependencies": {
"@types/chai": "4.2.0",
"@types/chai-as-promised": "7.1.1",
"@types/figlet": "^1.2.0",
"@types/js-yaml": "^3.12.2",
"@types/mocha": "5.2.7",
"@types/mock-fs": "^4.10.0",
"@types/node": "^12.12.27",
"@types/node-fetch": "^2.5.4",
"@types/node-persist": "^3.0.0",
"@types/sinon": "^7.5.1",
"@types/ssri": "^6.0.1",
"@types/uuid": "^9.0.7",
"@types/yargs": "^13.0.8",
"@types/yarnpkg__lockfile": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@yarnpkg/lockfile": "^1.1.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^8.3.1",
"mocha-junit-reporter": "^1.23.3",
"mock-fs": "^5.4.1",
"nock": "11.7.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "^4.0.0",
"sinon": "^8.0.2",
"ts-node": "^8.5.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.5",
"chalk": "^3.0.0",
"colors": "1.4.0",
"figlet": "^1.2.4",
"https-proxy-agent": "^5.0.0",
"js-yaml": "3.13.1",
"log4js": "^6.4.0",
"node-fetch": "^2.6.8",
"node-persist": "^3.1.0",
"ora": "^4.0.3",
"read-installed": "~4.0.3",
"spdx-license-ids": "^3.0.5",
"ssri": "^8.0.1",
"uuid": "^9.0.1",
"xmlbuilder": "^13.0.2",
"yargs": "^16.1.0"
}
}