-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 862 Bytes
/
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
{
"name": "is-my-node-vulnerable",
"version": "1.6.1",
"description": "package that checks if your Node.js installation is vulnerable to known security vulnerabilities",
"main": "index.js",
"bin": {
"is-my-node-vulnerable": "./index.js"
},
"keywords": [
"security",
"nodejs"
],
"scripts": {
"build": "ncc build action.js -o dist",
"test": "npm run lint && node setup-test.js",
"lint": "standard"
},
"author": "RafaelGSS <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/RafaelGSS/is-my-node-vulnerable"
},
"standard": {
"ignore": [
"dist/**",
"ascii.js"
]
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"semver": "^7.3.8"
},
"devDependencies": {
"standard": "^17.0.0",
"@vercel/ncc": "^0.36.1"
}
}