-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.29 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
{
"name": "@merupatel/reachable",
"version": "1.0.8",
"description": "Local-first vulnerability reachability CLI for JavaScript and TypeScript",
"bin": {
"reachable": "dist/cli/index.js"
},
"main": "dist/cli/index.js",
"files": [
"dist/cli/index.js",
"dist/cli/index.d.cts",
"dist/package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup && node scripts/postbuild.cjs",
"lint": "eslint . --ext .ts",
"prepack": "npm run build",
"test": "vitest run --coverage",
"test-integration": "vitest run --config vitest.integration.config.ts",
"typecheck": "tsc --noEmit",
"release-dry": "semantic-release --dry-run"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"security",
"dependency-analysis",
"reachability",
"osv",
"audit",
"nodejs",
"javascript",
"typescript",
"npm",
"vulnerability-scanner",
"static-analysis",
"devsecops",
"sast",
"sarif",
"github-actions",
"supply-chain-security",
"tree-sitter"
],
"author": "merupatel",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Meru143/reachable.git"
},
"bugs": {
"url": "https://github.com/Meru143/reachable/issues"
},
"homepage": "https://github.com/Meru143/reachable#readme",
"publishConfig": {
"access": "public"
},
"overrides": {
"@actions/http-client": "3.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.1",
"@types/node": "22.19.15",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"@vitest/coverage-v8": "2.1.9",
"eslint": "8.57.1",
"json-schema-traverse": "0.4.1",
"nock": "^14.0.10",
"semantic-release": "25.0.3",
"tsup": "8.5.1",
"typescript": "5.7.3",
"vitest": "2.1.9"
},
"dependencies": {
"chalk": "5.6.2",
"cli-table3": "0.6.5",
"commander": "12.1.0",
"cosmiconfig": "9.0.1",
"pino": "9.14.0",
"pino-pretty": "13.1.3",
"tree-sitter": "0.21.1",
"tree-sitter-javascript": "0.23.1",
"tree-sitter-typescript": "0.23.2",
"undici": "6.24.1",
"zod": "3.25.76"
}
}