-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
{
"name": "vj_sync",
"version": "0.1.0",
"description": "Tool that pulls Infrastructure Vulnerability Alerts from Vanta and Adds them to JIRA",
"main": "index.ts",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . && prettier --check .",
"fix-lint": "eslint . --fix && prettier --write .",
"tsc-build": "tsc",
"tsc-watch": "tsc --watch",
"tsc-check": "tsc --noEmit",
"start": "node --import ./ts-node.register.mjs ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bubblegroup/vj_sync"
},
"author": "@bubblegroup/dev-group-cloud-infra",
"contributors": [
{
"name": "Andy Rakauskas",
"url": "https://github.com/andyrak"
},
{
"name": "Jerrel Blankenship",
"url": "https://github.com/jerrelblankenship"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/bubblegroup/vj_sync/issues"
},
"homepage": "https://github.com/bubblegroup/vj_sync/#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/jest-when": "^3.5.5",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-ec2": "^3.490.0",
"@aws-sdk/client-ssm": "^3.481.0",
"@jest/globals": "^29.7.0",
"axios": "^1.7.4",
"dotenv": "^16.4.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"ts-node": "^10.9.2"
}
}