-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.71 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
{
"bin": {
"ihlp": "./lib/cli.js"
},
"engines": {
"node": ">=10.0"
},
"name": "ihlp",
"version": "0.11.1",
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.316.0",
"@aws-sdk/client-cloudfront": "^3.316.0",
"@aws-sdk/client-s3": "^3.316.0",
"@aws-sdk/client-serverlessapplicationrepository": "^3.316.0",
"@aws-sdk/client-ssm": "^3.316.0",
"@aws-sdk/client-sts": "^3.316.0",
"@azure/arm-resources": "^5.0.1",
"@azure/identity": "^4.4.1",
"@google-cloud/storage": "^5.16.0",
"@npmcli/ci-detect": "^1.3.0",
"adm-zip": "^0.5.5",
"archiver": "^5.3.0",
"chalk": "^4.1.2",
"commander": "^8.0.0",
"compare-versions": "^3.6.0",
"dir-compare": "^3.3.0",
"env-paths": "^2.0.0",
"folder-hash": "^4.0.1",
"follow-redirects": "^1.14.3",
"fs-extra": "^11.1.0",
"google-auth-library": "^7.10.2",
"hcl2-parser": "^1.0.3",
"md5-file": "^5.0.0",
"mime-types": "^2.1.32",
"netrc-reader": "^0.1.1",
"prompt-sync": "^4.1.6",
"rimraf": "^3.0.2",
"s3-sync-client": "^1.5.0",
"source-map-support": "^0.5.19",
"tar": "^6.1.11",
"tmp-promise": "^3.0.2",
"ts-node": "^10.8.1",
"typescript": "^4.8.2",
"uuid": "^8.3.2",
"which": "^2.0.2"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.28.0",
"@types/adm-zip": "^0.4.34",
"@types/archiver": "^5.1.1",
"@types/folder-hash": "^4.0.1",
"@types/follow-redirects": "^1.14.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^14.14.14",
"@types/prompt-sync": "^4.1.1",
"@types/rimraf": "^3.0.1",
"@types/source-map-support": "^0.5.4",
"@types/tar": "^6.1.1",
"@types/uuid": "^8.3.1",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"docsify-cli": "^4.4.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gaxios": "^4.3.2",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7"
},
"description": "Infrastructure/app management helper",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"docs": "docsify serve ./docs",
"integration": "ts-node test/index.ts",
"lint": "eslint scripts src test .eslintrc.js jest.config.js --ext .js,.jsx,.ts,.tsx",
"lintfix": "npm run lint -- --fix",
"test": "jest",
"coverage": "npm test -- --coverage",
"release": "ts-node scripts/create_release.ts"
},
"repository": {
"type": "git",
"url": "github.com/troyready/ihlp"
},
"author": "Troy Ready",
"license": "MIT",
"prettier": {
"trailingComma": "all"
}
}