-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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": "@nodesecure/vulnera",
"version": "3.1.0",
"description": "NodeSecure vulnerabilities strategies",
"type": "module",
"engines": {
"node": ">=22"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src test",
"test-only": "node --test ./test/**/*.spec.ts",
"unit-test-only": "node --test ./test/**/*.unit.spec.ts",
"integration-test-only": "node --test ./test/**/*.integration.spec.ts",
"test": "npm run lint && npm run test-only",
"test:unit": "npm run lint && npm run unit-test-only",
"test:integration": "npm run lint && npm run integration-test-only",
"coverage": "c8 -r html npm test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/vulnera.git"
},
"keywords": [
"npm",
"audit",
"nodesecure",
"vulnerabilities",
"vulnerability",
"strategies",
"strategy",
"security",
"node",
"wg"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/vulnera/issues"
},
"homepage": "https://github.com/NodeSecure/vulnera#readme",
"devDependencies": {
"@openally/config.eslint": "^2.1.0",
"@openally/config.typescript": "1.3.0",
"@slimio/is": "^2.0.0",
"@types/node": "^25.0.2",
"@types/npmcli__arborist": "6.3.3",
"c8": "^11.0.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@nodesecure/npm-registry-sdk": "4.5.2",
"@npmcli/arborist": "^9.0.0",
"@openally/httpie": "1.1.2",
"@pnpm/audit": "1001.0.2",
"@pnpm/lockfile-file": "^9.1.1"
}
}