-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.22 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
{
"name": "@victor-software-house/is-node-vulnerable",
"version": "1.0.1",
"description": "TypeScript-based Node.js security vulnerability checker with Zod validation and bundled security data",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"is-node-vulnerable": "./dist/index.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"data",
"README.md"
],
"scripts": {
"build": "tsdown",
"check": "node --import tsx ./index.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepare": "husky",
"prepublishOnly": "pnpm lint && pnpm typecheck && pnpm test && pnpm build"
},
"lint-staged": {
"*.{ts,js,json,md}": "eslint --fix"
},
"keywords": [
"node",
"security",
"vulnerability",
"cve",
"checker",
"typescript"
],
"author": "Victor Araújo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/victor-software-house/is-node-vulnerable.git"
},
"bugs": {
"url": "https://github.com/victor-software-house/is-node-vulnerable/issues"
},
"homepage": "https://github.com/victor-software-house/is-node-vulnerable#readme",
"dependencies": {
"semver": "^7.7.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@dword-design/eslint-plugin-import-alias": "^8.1.3",
"@eslint/js": "^9.39.2",
"@tool-belt/type-predicates": "^1.4.1",
"@types/node": "^25.0.8",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.3.1",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsdown": "0.20.0-beta.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}