-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 2.02 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
{
"name": "@nodesecure/report",
"version": "3.0.0",
"description": "NodeSecure HTML & PDF graphic security report",
"main": "./dist/src/index.js",
"type": "module",
"bin": {
"nreport": "./dist/bin/index.js"
},
"exports": {
".": {
"import": "./dist/src/index.js"
}
},
"scripts": {
"build": "tsc && npm run build:views && npm run build:public",
"build:views": "rimraf dist/views && cp -r views dist/views",
"build:public": "rimraf dist/public && cp -r public dist/public",
"lint": "eslint src test bin scripts",
"test-only": "glob -c \"tsx --test-reporter=spec --test\" \"./test/**/*.spec.ts\"",
"test": "c8 --all --src ./src -r html npm run test-only",
"preview:light": "tsx --no-warnings ./scripts/preview.js --theme light",
"preview:dark": "tsx --no-warnings ./scripts/preview.js --theme dark",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/report.git"
},
"keywords": [
"security",
"report",
"nodesecure",
"pdf",
"html",
"chart"
],
"author": "NodeSecure",
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/report/issues"
},
"homepage": "https://github.com/NodeSecure/report#readme",
"dependencies": {
"@nodesecure/flags": "^2.4.0",
"@nodesecure/ossf-scorecard-sdk": "^3.2.1",
"@nodesecure/rc": "^4.0.0",
"@nodesecure/scanner": "^6.0.2",
"@nodesecure/utils": "^2.2.0",
"@openally/mutex": "^1.0.0",
"@topcli/spinner": "^2.1.2",
"esbuild": "^0.24.0",
"filenamify": "^6.0.0",
"kleur": "^4.1.5",
"puppeteer": "23.11.1",
"sade": "^1.8.1",
"zup": "0.0.2"
},
"devDependencies": {
"@openally/config.eslint": "^1.3.0",
"@openally/config.typescript": "^1.0.3",
"@types/node": "^22.2.0",
"c8": "^10.1.2",
"glob": "^11.0.0",
"open": "^10.1.0",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20"
}
}