-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
139 lines (139 loc) · 3.88 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@contrast/contrast",
"version": "1.0.17",
"description": "Contrast Security's command line tool",
"main": "dist/index.js",
"bin": {
"contrast": "./bin/contrast.js"
},
"author": "Jamie Mcgurk <jamie.mcgurk@contrastsecurity.com>",
"contributors": [
{
"name": "Chris Dunne",
"email": "christopher.dunne@contrastsecurity.com"
},
{
"name": "Andrew Shanks",
"email": "andrew.shanks@contrastsecurity.com"
}
],
"license": "ISC",
"scripts": {
"build": "tsc",
"test": "jest --testPathIgnorePatterns=./test-integration/",
"test-int": "jest ./test-integration/",
"test-int-scan": "jest ./test-integration/scan",
"test-int-audit": "jest test-integration/audit",
"test-int-audit-reports": "jest test-integration/audit/audit-language-reports.spec.js",
"test-int-scan-errors": "jest test-integration/scan/scanLocalErrors.spec.js",
"test-int-scan-reports": "jest test-integration/scan/scanReport.spec.js",
"test-int-audit-features": "jest test-integration/audit/auditFeatures/",
"test-int-audit-experimental": "jest test-integration/audit/audit-experimental.spec.js",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md,yml}\" .eslintrc.*",
"check-format": "prettier --check \"**/*.{ts,tsx,js,json,md,yml}\" .eslintrc.*",
"coverage-local": "nyc --reporter=text mocha './test/**/*.spec.js'",
"coverage": "yarn test --coverage",
"lint": "eslint --config .eslintrc.json . --ext .ts",
"extract-licenses": "node scripts/extract-licenses",
"test-jest": "jest",
"lambda-dev": "npx ts-node src/index.ts lambda",
"dev": "npx ts-node src/index.ts"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@aws-sdk/client-iam": "^3.78.0",
"@aws-sdk/client-lambda": "^3.78.0",
"@types/semver": "^7.3.9",
"@yarnpkg/lockfile": "^1.1.0",
"bluebird": "^3.7.2",
"boxen": "5.1.2",
"chalk": "4.1.2",
"cli-table3": "^0.6.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"conf": "^10.1.2",
"cross-spawn": "^7.0.3",
"dotenv": "^16.0.0",
"fast-glob": "^3.2.11",
"gradle-to-js": "^2.0.1",
"i18n": "^0.14.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log-symbols": "^4.1.0",
"open": "^8.4.0",
"ora": "5.4.1",
"prettyjson": "^1.2.5",
"request": "^2.88.2",
"semver": "^7.3.7",
"string-builder": "^0.1.8",
"string-multiple-replace": "^1.0.5",
"tmp": "^0.2.1",
"xml2js": "^0.4.23",
"yarn-lockfile": "^1.1.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/i18n": "^0.13.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"csv-writer": "^1.6.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^3.1.0",
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"mocha": "^9.2.2",
"npm-license-crawler": "^0.2.1",
"nyc": "^15.1.0",
"pkg": "^5.6.0",
"prettier": "^2.7.1",
"tmp": "^0.2.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"uuid": "^8.3.2"
},
"resolutions": {
"faker": "5.5.3",
"colors": "1.4.0"
},
"eslintIgnore": [
"node_modules"
],
"prettier": {
"semi": false,
"trailingComma": "none",
"arrowParens": "avoid",
"bracketSpacing": true,
"singleQuote": true,
"bracketSameLine": true,
"overrides": [
{
"files": [
".eslintrc"
],
"options": {
"parser": "json"
}
}
]
},
"pkg": {
"scripts": [
"dist/**/*.js",
"bin/contrast"
],
"assets": [
"dist"
],
"outputPath": "binaries"
}
}