This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.29 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
{
"name": "@quantum-sec/ci-analysis-collector",
"version": "0.0.0-development",
"description": "Utility library used to collect security analysis results and upload them for correlation and reporting in the Quantum Security platform.",
"repository": {
"type": "git",
"url": "git@github.com:quantum-sec/ci-analysis-collector.git"
},
"author": {
"name": "Quantum Security Pte. Ltd.",
"email": "info@quantum.security",
"url": "https://www.quantum.security/"
},
"scripts": {
"clean": "rm -rf ./dist/",
"build": "npm run clean && tsc --build --extendedDiagnostics",
"build:cleanup": "find ./dist/ -type f -name '*.spec.*' -delete",
"build:chmod": "chmod +x ./dist/index.js",
"lint": "eslint ./src/ --ext .ts",
"test:jasmine": "jasmine-ts --config=jasmine.json",
"test:coverage": "nyc npm run test:jasmine",
"test": "npm run test:coverage -s",
"postbuild": "npm run build:cleanup && npm run build:chmod",
"prepublishOnly": "npm run build"
},
"license": "Apache-2.0",
"bin": {
"ci-analysis-collector": "dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@quantum-sec/eslint-config-typescript": "^2.0.2",
"@quantum-sec/nyc-config-typescript": "^1.1.2",
"@quantum-sec/typescript-config": "^1.0.5",
"@types/jasmine": "^3.9.1",
"@types/node": "^15.12.5",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.26.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.0",
"jasmine": "^3.5.0",
"jasmine-reporters": "^2.3.2",
"jasmine-spec-reporter": "^4.2.1",
"jasmine-ts": "^0.3.0",
"jasmine-ts-console-reporter": "^3.1.1",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^2.4.2",
"dotenv": "^10.0.0",
"sinon": "^12.0.1",
"tslib": "^1.13.0",
"uuid": "^3.4.0",
"yargs": "^16.2.0"
},
"bugs": {
"url": "https://github.com/quantum-sec/ci-analysis-collector/issues"
},
"homepage": "https://github.com/quantum-sec/ci-analysis-collector#readme"
}