|
1 | | -{ |
2 | | - "name": "@nodesecure/report", |
3 | | - "version": "3.0.0", |
4 | | - "description": "NodeSecure HTML & PDF graphic security report", |
5 | | - "main": "./dist/src/index.js", |
6 | | - "type": "module", |
7 | | - "bin": { |
8 | | - "nreport": "./dist/bin/index.js" |
9 | | - }, |
10 | | - "exports": { |
11 | | - ".": { |
12 | | - "import": "./dist/src/index.js" |
13 | | - } |
14 | | - }, |
15 | | - "scripts": { |
16 | | - "build": "tsc && npm run build:views && npm run build:public", |
17 | | - "build:views": "rimraf dist/views && cp -r views dist/views", |
18 | | - "build:public": "rimraf dist/public && cp -r public dist/public", |
19 | | - "lint": "eslint src test bin scripts", |
20 | | - "test-only": "glob -c \"tsx --test-reporter=spec --test\" \"./test/**/*.spec.ts\"", |
21 | | - "test": "c8 --all --src ./src -r html npm run test-only", |
22 | | - "preview:light": "tsx --no-warnings ./scripts/preview.js --theme light", |
23 | | - "preview:dark": "tsx --no-warnings ./scripts/preview.js --theme dark", |
24 | | - "prepublishOnly": "npm run build" |
25 | | - }, |
26 | | - "files": [ |
27 | | - "dist" |
28 | | - ], |
29 | | - "repository": { |
30 | | - "type": "git", |
31 | | - "url": "git+https://github.com/NodeSecure/report.git" |
32 | | - }, |
33 | | - "keywords": [ |
34 | | - "security", |
35 | | - "report", |
36 | | - "nodesecure", |
37 | | - "pdf", |
38 | | - "html", |
39 | | - "chart" |
40 | | - ], |
41 | | - "author": "NodeSecure", |
42 | | - "license": "MIT", |
43 | | - "bugs": { |
44 | | - "url": "https://github.com/NodeSecure/report/issues" |
45 | | - }, |
46 | | - "homepage": "https://github.com/NodeSecure/report#readme", |
47 | | - "dependencies": { |
48 | | - "@nodesecure/flags": "^2.4.0", |
49 | | - "@nodesecure/ossf-scorecard-sdk": "^3.2.1", |
50 | | - "@nodesecure/rc": "^4.0.0", |
51 | | - "@nodesecure/scanner": "^6.0.2", |
52 | | - "@nodesecure/utils": "^2.2.0", |
53 | | - "@openally/mutex": "^1.0.0", |
54 | | - "@topcli/spinner": "^2.1.2", |
55 | | - "esbuild": "^0.25.0", |
56 | | - "filenamify": "^6.0.0", |
57 | | - "kleur": "^4.1.5", |
58 | | - "puppeteer": "24.3.1", |
59 | | - "sade": "^1.8.1", |
60 | | - "zup": "0.0.2" |
61 | | - }, |
62 | | - "devDependencies": { |
63 | | - "@openally/config.eslint": "^1.3.0", |
64 | | - "@openally/config.typescript": "^1.0.3", |
65 | | - "@types/node": "^22.2.0", |
66 | | - "c8": "^10.1.2", |
67 | | - "glob": "^11.0.0", |
68 | | - "open": "^10.1.0", |
69 | | - "rimraf": "^6.0.1", |
70 | | - "tsx": "^4.19.2", |
71 | | - "typescript": "^5.7.2" |
72 | | - }, |
73 | | - "engines": { |
74 | | - "node": ">=20" |
75 | | - } |
76 | | -} |
| 1 | +{ |
| 2 | + "name": "@nodesecure/report", |
| 3 | + "version": "3.0.0", |
| 4 | + "description": "NodeSecure HTML & PDF graphic security report", |
| 5 | + "main": "./dist/src/index.js", |
| 6 | + "type": "module", |
| 7 | + "bin": { |
| 8 | + "nreport": "./dist/bin/index.js" |
| 9 | + }, |
| 10 | + "exports": { |
| 11 | + ".": { |
| 12 | + "import": "./dist/src/index.js" |
| 13 | + } |
| 14 | + }, |
| 15 | + "scripts": { |
| 16 | + "build": "tsc && npm run build:views && npm run build:public", |
| 17 | + "build:views": "rimraf dist/views && cp -r views dist/views", |
| 18 | + "build:public": "rimraf dist/public && cp -r public dist/public", |
| 19 | + "lint": "eslint src test bin scripts", |
| 20 | + "test-only": "glob -c \"tsx --test-reporter=spec --test\" \"./test/**/*.spec.ts\"", |
| 21 | + "test": "c8 --all --src ./src -r html npm run test-only", |
| 22 | + "preview:light": "tsx --no-warnings ./scripts/preview.js --theme light", |
| 23 | + "preview:dark": "tsx --no-warnings ./scripts/preview.js --theme dark", |
| 24 | + "prepublishOnly": "npm run build" |
| 25 | + }, |
| 26 | + "files": [ |
| 27 | + "dist" |
| 28 | + ], |
| 29 | + "repository": { |
| 30 | + "type": "git", |
| 31 | + "url": "git+https://github.com/NodeSecure/report.git" |
| 32 | + }, |
| 33 | + "keywords": [ |
| 34 | + "security", |
| 35 | + "report", |
| 36 | + "nodesecure", |
| 37 | + "pdf", |
| 38 | + "html", |
| 39 | + "chart" |
| 40 | + ], |
| 41 | + "author": "NodeSecure", |
| 42 | + "license": "MIT", |
| 43 | + "bugs": { |
| 44 | + "url": "https://github.com/NodeSecure/report/issues" |
| 45 | + }, |
| 46 | + "homepage": "https://github.com/NodeSecure/report#readme", |
| 47 | + "dependencies": { |
| 48 | + "@nodesecure/flags": "^2.4.0", |
| 49 | + "@nodesecure/ossf-scorecard-sdk": "^3.2.1", |
| 50 | + "@nodesecure/rc": "^4.0.0", |
| 51 | + "@nodesecure/scanner": "^6.0.2", |
| 52 | + "@nodesecure/utils": "^2.2.0", |
| 53 | + "@openally/mutex": "^1.0.0", |
| 54 | + "@topcli/spinner": "^2.1.2", |
| 55 | + "esbuild": "^0.25.0", |
| 56 | + "filenamify": "^6.0.0", |
| 57 | + "kleur": "^4.1.5", |
| 58 | + "puppeteer": "24.3.1", |
| 59 | + "sade": "^1.8.1", |
| 60 | + "zup": "0.0.2" |
| 61 | + }, |
| 62 | + "devDependencies": { |
| 63 | + "@openally/config.eslint": "^2.1.0", |
| 64 | + "@openally/config.typescript": "^1.0.3", |
| 65 | + "@types/node": "^22.2.0", |
| 66 | + "c8": "^10.1.2", |
| 67 | + "glob": "^11.0.0", |
| 68 | + "open": "^10.1.0", |
| 69 | + "rimraf": "^6.0.1", |
| 70 | + "tsx": "^4.19.2", |
| 71 | + "typescript": "^5.7.2" |
| 72 | + }, |
| 73 | + "engines": { |
| 74 | + "node": ">=20" |
| 75 | + } |
| 76 | +} |
0 commit comments