forked from aquasecurity/cloudsploit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.86 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
65
66
67
68
69
{
"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-file-share": "^12.14.0",
"@azure/storage-queue": "^12.13.0",
"@azure/storage-blob": "^12.14.0",
"@octokit/auth-app": "^6.0.3",
"@octokit/request": "^8.1.6",
"@octokit/rest": "^20.0.2",
"ali-oss": "^6.15.2",
"argparse": "^2.0.0",
"async": "^2.6.1",
"aws-sdk": "^2.1506.0",
"azure-storage": "^2.10.3",
"csv-write-stream": "^2.0.0",
"fast-safe-stringify": "^2.0.6",
"google-auth-library": "^8.1.1",
"minimatch": "^3.0.4",
"ms-rest-azure": "^3.0.2",
"tty-table": "^4.1.3"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "^6.8.0",
"mocha": "^6.1.4",
"nodemon": "^1.19.4",
"nyc": "^14.1.1"
}
}