-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
65 lines (65 loc) · 1.76 KB
/
package.json
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
{
"name": "@nodesecure/vulnera",
"version": "2.0.1",
"description": "NodeSecure vulnerabilities strategies",
"type": "module",
"engines": {
"node": ">=18"
},
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "cross-env eslint src/**/*.ts",
"test-only": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"unit-test-only": "glob -c \"tsx --test\" \"./test/**/*.unit.spec.ts\"",
"integration-test-only": "glob -c \"tsx --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"
},
"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 <[email protected]>",
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/vulnera/issues"
},
"homepage": "https://github.com/NodeSecure/vulnera#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.8.0",
"@slimio/is": "^2.0.0",
"@types/node": "^22.1.0",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
"glob": "^11.0.0",
"tsx": "^4.7.0",
"typescript": "^5.4.2"
},
"dependencies": {
"@myunisoft/httpie": "^5.0.0",
"@nodesecure/npm-registry-sdk": "^3.0.0",
"@npmcli/arborist": "^7.1.0",
"@pnpm/audit": "^8.1.5",
"@pnpm/lockfile-file": "^9.1.1"
}
}