-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 893 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": "package-scan",
"version": "1.0.0",
"description": "an automated tool to scan yarn.lock file of a github repository of an organization for vulnerabilities",
"main": "index.js",
"type": "module",
"scripts": {
"npmaudit": "npm install --package-lock-only && npm audit",
"check": "node index.js"
},
"author": "iampukar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iampukar/package-scan.git"
},
"keywords": [
"supply chain",
"github advisory",
"packages"
],
"homepage": "https://github.com/iampukar/package-scan#readme",
"bugs": {
"url": "https://github.com/iampukar/package-scan/issues"
},
"engines": {
"node": ">=18.14.2"
},
"files": [
"src",
"index.js"
],
"devDependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"dotenv": "^16.3.1",
"semver": "^7.5.3"
}
}