-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "packj",
"version": "0.0.0",
"description": "Packj flags malicious, vulnerable, and \"risky\" NPM packages in your software supply chain",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest .",
"lint": "eslint \"**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ossillate-inc/packj.git"
},
"keywords": [
"softwaresupplychain",
"cybersecurity",
"malwaredetection",
"typo-squatting",
"softwarecompositionanalysis"
],
"author": "Ossillate Inc. <oss@ossillate.com> (https://packj.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ossillate-inc/packj/issues"
},
"homepage": "https://github.com/ossillate-inc/packj#readme",
"dependencies": {
"axios": "^1.3.5",
"chalk": "^5.2.0",
"prompt-sync": "^4.2.0",
"qs": "^6.11.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^18.15.11",
"@types/prompt-sync": "^4.2.0",
"@types/qs": "^6.9.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}