-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
119 lines (119 loc) · 3.18 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "iidy",
"version": "1.13.0",
"description": "A tool for working with CloudFormation and yaml templates.",
"main": "lib/cli.js",
"bin": "bin/iidy",
"scripts": {
"prepare": "npm run build",
"postinstall": "patch-package",
"build": "tsc -p .",
"watch": "tsc --watch",
"lint": "tslint -p . src/*ts src/**/*ts",
"pkg-binaries": "pkg --out-path dist -t node14-macos,node14-linux package.json",
"test": "mocha lib/tests/**/*js",
"test-watch": "mocha --watch lib/tests/**/*js",
"ts-test-watch": "mocha --watch src/tests/**/*ts",
"coverage": "nyc --reporter=lcov --cache mocha src/tests/**/*ts"
},
"author": "Tavis Rudd <[email protected]>",
"repository": "https://github.com/unbounce/iidy",
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"auto-changelog": "2.3.0",
"aws-sdk": "git+https:[email protected]/unbounce/aws-sdk-js#a0f368001ec10ec0038898ca9ecfcd6df323a811",
"bluebird": "3.7.2",
"cli-color": "^2.0.0",
"dateformat": "4.5.1",
"didyoumean2": "5.0.0",
"esm": "3.2.25",
"glob": "7.1.7",
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"inquirer": "8.1.5",
"jmespath": "0.15.0",
"js-yaml": "3.14.1",
"laundry-cfn": "^1.6.2",
"lodash": "^4.17.21",
"ntp-client": "^0.5.3",
"ora": "5.4.1",
"project-name-generator": "2.1.9",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"tmp": "0.2.1",
"ts-md5": "1.2.9",
"tv4": "^1.3.0",
"winston": "git+https:[email protected]/winstonjs/winston#1a7554486dd71e5656b4fd3cd9168fc3620df9a8",
"wrap-ansi": "7.0.0",
"yargs": "14.2.0"
},
"devDependencies": {
"@octokit/rest": "18.11.2",
"@octokit/types": "6.31.1",
"@types/bluebird": "3.5.36",
"@types/bluebird-global": "3.5.13",
"@types/chai": "4.2.22",
"@types/cli-color": "2.0.1",
"@types/dateformat": "3.0.1",
"@types/glob": "7.1.4",
"@types/handlebars-helpers": "0.5.3",
"@types/inquirer": "8.1.2",
"@types/jmespath": "^0.15.0",
"@types/js-yaml": "3.12.7",
"@types/lodash": "4.14.173",
"@types/mocha": "8.2.3",
"@types/node": "12.12.6",
"@types/pad": "2.1.0",
"@types/request": "2.48.7",
"@types/request-promise": "4.1.48",
"@types/request-promise-native": "1.0.16",
"@types/sprintf-js": "^1.1.2",
"@types/tmp": "0.2.1",
"@types/tv4": "1.2.31",
"@types/wrap-ansi": "^3.0.0",
"@types/yargs": "12.0.1",
"chai": "4.3.4",
"chai-exclude": "2.0.3",
"intercept-stdout": "^0.1.2",
"mocha": "8.4.0",
"mocha-typescript": "^1.1.17",
"nyc": "15.1.0",
"patch-package": "6.4.7",
"pkg": "5.3.2",
"source-map-support": "0.5.20",
"ts-mocha": "8.0.0",
"ts-node": "10.2.1",
"tslint": "6.1.3",
"typescript": "4.4.3"
},
"mocha": {
"require": [
"ts-node/register",
"src/tests/_init.ts"
]
},
"nyc": {
"extension": [
".js",
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true,
"cache": true,
"sourceMap": true,
"instrument": true
}
}