-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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": "@enterprise-cmcs/macpro-security-hub-sync",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "1.0.1",
"description": "NPM module to create Jira issues for all findings in Security Hub for the current AWS account..",
"main": "./dist/index.js",
"typings": "./dist/index.js",
"scripts": {
"bp": "rm -rf ./dist && rm -rf ./node_modules && npm i --save && tsc && npm publish",
"build": "tsc",
"test": "vitest --config ./src/tests/vitest.config.ts",
"test-ci": "vitest run --config ./src/tests/vitest.config.ts",
"test-gui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enterprise-cmcs/macpro-security-hub-sync.git"
},
"keywords": [
"AWS",
"Security Hub",
"Jira"
],
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.15.12",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^0.34.3",
"@vitest/ui": "^0.30.1",
"aws-sdk-client-mock": "^2.1.1",
"semantic-release": "^21.0.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4",
"vitest": "^0.34.3"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@aws-sdk/client-iam": "^3.316.0",
"@aws-sdk/client-securityhub": "^3.317.0",
"@aws-sdk/client-sts": "^3.316.0",
"@types/jira-client": "^7.1.6",
"axios": "^1.6.2",
"dotenv": "^16.0.3",
"jira-client": "^8.2.2"
},
"bugs": {
"url": "https://github.com/enterprise-cmcs/macpro-security-hub-sync/issues"
},
"homepage": "https://github.com/enterprise-cmcs/macpro-security-hub-sync#readme",
"directories": {
"example": "examples"
}
}