-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.14 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.14 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
{
"name": "dependency-radar",
"version": "0.7.0",
"description": "Local-first dependency analysis tool that generates a single HTML report showing risk, size, usage, and structure of your project's dependencies.",
"main": "dist/index.js",
"bin": {
"dependency-radar": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev:report": "cd report-ui && npx vite",
"build:spdx": "ts-node scripts/build-spdx.ts",
"build:report-ui": "cd report-ui && npx vite build",
"build:report": "npm run build:report-ui && npx ts-node scripts/build-report.ts",
"build": "npm run build:spdx && npm run build:report && tsc",
"dev": "ts-node src/cli.ts scan",
"scan": "node dist/cli.js scan",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:fixtures": "npm --prefix test-fixtures run test",
"test:fixtures:online": "npm --prefix test-fixtures run test:online",
"test:fixtures:all": "npm --prefix test-fixtures run test:all",
"test:docker:node14": "node scripts/test-docker-node14.js",
"test:docker": "npm run test:docker:node14",
"test:pack": "npm pack --dry-run",
"test:release:ok": "node -e \"console.log('\\n✅ test:release passed')\"",
"test:release": "npm run build && npm run test:unit && npm run test:fixtures:all && npm run test:docker && npm run test:pack && npm run test:release:ok",
"prepublishOnly": "npm run build"
},
"author": " ",
"license": "MIT",
"engines": {
"node": ">=14.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephMaynard/dependency-radar.git"
},
"homepage": "http://dependency-radar.com",
"bugs": {
"url": "https://github.com/JosephMaynard/dependency-radar/issues"
},
"keywords": [
"dependency",
"dependencies",
"analysis",
"audit",
"security",
"license",
"cli",
"report",
"scan",
"npm",
"node",
"html"
],
"devDependencies": {
"@types/node": "^20.11.30",
"terser": "^5.27.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"packageManager": "npm@10.9.2"
}