forked from NodeSecure/vulnera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.47 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
{
"name": "@nodesecure/vuln",
"version": "1.2.0",
"description": "NodeSecure vulnerabilities strategies",
"exports": "./index.js",
"scripts": {
"test": "cross-env esm-tape-runner 'test/**/*.js' | tap-monkey",
"test:typescript": "tsd",
"coverage": "c8 -r html npm test",
"lint": "cross-env eslint index.js",
"check": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodeSecure/vuln.git"
},
"keywords": [
"npm",
"audit",
"nodesecure",
"vulnerabilities",
"vulnerability",
"strategies",
"strategy",
"security",
"node",
"wg"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"files": [
"index.d.ts",
"index.js",
"types",
"src"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NodeSecure/vuln/issues"
},
"homepage": "https://github.com/NodeSecure/vuln#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.1.0",
"@slimio/is": "^1.5.1",
"@small-tech/esm-tape-runner": "^1.0.3",
"@small-tech/tap-monkey": "^1.3.0",
"c8": "^7.8.0",
"cross-env": "^7.0.3",
"tape": "^5.3.0",
"tsd": "^0.17.0"
},
"type": "module",
"dependencies": {
"@nodesecure/npm-registry-sdk": "^1.1.1",
"@npmcli/arborist": "^2.8.0",
"@slimio/github": "^1.0.0",
"semver": "^7.3.5"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"esModuleInterop": true
}
}
}