-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.28 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
{
"name": "gh-org-scan",
"version": "1.0.3",
"description": "",
"engines": {
"node": ">=20"
},
"author": "",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"dev": "node --env-file=.env -r ts-node/register src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "cross-env NODE_OPTIONS='--import=tsx' ava",
"prepare": "husky install",
"genReportDocs": "node -r ts-node/register scripts/genReportDocs/index.ts && git add reports.md"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.540.0",
"@byu-oit/env-ssm": "^3.4.0",
"@byu-oit/logger": "^0.4.2",
"@cdktf/hcl2json": "^0.20.5",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/plugin-throttling": "^8.1.2",
"@octokit/request-error": "^5.0.1",
"@octokit/rest": "^20.0.2",
"@sinclair/typebox": "^0.31.25",
"adm-zip": "^0.5.10",
"compare-versions": "^6.1.0",
"csv-writer": "^1.6.0",
"env-var": "^7.4.1",
"immutable": "^5.0.0-beta.5",
"js-yaml": "^4.1.0",
"json-stringify-safe": "^5.0.1",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"markdown-it": "^14.0.0",
"progress": "^2.0.3",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/adm-zip": "^0.5.4",
"@types/js-yaml": "^4.0.9",
"@types/json-stringify-safe": "^5.0.3",
"@types/markdown-it": "^13.0.7",
"@types/progress": "^2.0.7",
"@types/sinon": "^17.0.3",
"ava": "^6.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"fetch-mock": "^9.11.0",
"husky": "^9.0.11",
"markdown-table-ts": "^1.0.3",
"rimraf": "^4.4.1",
"sinon": "^17.0.1",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.2",
"tsx": "^4.7.1",
"typescript": "5.4.3"
},
"standard": {
"env": {
"node": true
}
},
"ava": {
"failWithoutAssertions": false,
"extensions": {
"ts": "commonjs"
}
},
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"bin": {
"gh-repo-versions": "./dist/index.js"
},
"homepage": ""
}