forked from aquasecurity/cloudsploit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.96 KB
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
66
67
68
69
70
71
72
73
74
75
{
"name": "cloudsploit",
"version": "2.0.0",
"description": "AWS, Azure, GCP, Oracle, GitHub security scanning scripts",
"main": "index.js",
"scripts": {
"test": "mocha './**/*.spec.js'",
"test-watch": "nodemon --exec npm run test",
"test-cov": "nyc --reporter text --reporter cobertura --reporter lcov --all -- npm run test",
"test-cov-watch": "nodemon --exec npm run test-cov",
"test-cov-html": "nyc --reporter html --reporter cobertura --reporter lcov --all -- npm run test",
"test-cov-html-watch": "nodemon --exec npm run test-cov-html",
"lint": "npx eslint ."
},
"bin": {
"cloudsploit-scan": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudsploit/scans.git"
},
"keywords": [
"aws",
"azure",
"google",
"gcp",
"oracle",
"oci",
"cloud",
"security"
],
"author": "Aqua Security",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cloudsploit/scans/issues"
},
"homepage": "https://cloud.aquasec.com",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@alicloud/pop-core": "^1.7.10",
"@azure/data-tables": "13.2.2",
"@azure/storage-blob": "12.16.0",
"@azure/storage-file-share": "12.16.0",
"@azure/storage-queue": "12.15.0",
"@octokit/app": "^14.0.1",
"@octokit/request": "^9.2.2",
"@octokit/rest": "^21.1.1",
"ali-oss": "^6.15.2",
"argparse": "^2.0.0",
"async": "^2.6.4",
"aws-sdk": "^2.1338.0",
"azure-storage": "^2.10.7",
"csv-write-stream": "^2.0.0",
"fast-safe-stringify": "^2.0.6",
"googleapis": "^76.0.0",
"minimatch": "^3.0.5",
"ms-rest-azure": "^2.6.2",
"tty-table": "^4.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^9.0.0",
"mocha": "11.0.1",
"nodemon": "3.0.0",
"nyc": "^15.0.0"
},
"overrides": {
"axios": "^1.12.2",
"form-data": "^4.0.4",
"tough-cookie": "4.1.3",
"glob": "11.0.1"
}
}