-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 2.03 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
{
"name": "cfn-include",
"version": "2.0.0",
"description": "Preprocessor for CloudFormation templates with support for loops and flexible include statements",
"keywords": [
"aws",
"cfn",
"cloudformation",
"include"
],
"homepage": "https://github.com/monken/cfn-include#readme",
"bugs": {
"url": "https://github.com/monken/cfn-include/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monken/cfn-include.git"
},
"license": "MIT",
"author": {
"name": "Moritz Onken",
"email": "[email protected]"
},
"main": "index.js",
"bin": {
"cfn-include": "bin/cli.js"
},
"files": [
"index.js",
"bin/",
"lib/"
],
"scripts": {
"better-audit": "better-npm-audit audit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "sort-package-json",
"serve": "serve ./t/fixtures -l 9999",
"test": "npm run test:this",
"test:this": "run-p -r serve test:run",
"test:run": "sleep 1 && mocha --timeout 20000 --bail t/include.js t/cli.js t/replaceEnv.js"
},
"dependencies": {
"@aws-sdk/client-cloudformation": "^3.637.0",
"@aws-sdk/client-s3": "^3.637.0",
"@znemz/cft-utils": "0.1.1",
"@znemz/sort-object": "^3.0.4",
"aws-sdk-v3-proxy": "2.1.2",
"bluebird": "^3.7.2",
"deepmerge": "^4.2.2",
"glob": "^11.0.0",
"jmespath": "^0.16.0",
"js-yaml": "^3.14.0",
"jsonminify": "^0.4.1",
"lodash": "^4.17.21",
"path-parse": "~1.0.7",
"proxy-agent": "6.3.1",
"yargs": "17"
},
"devDependencies": {
"@commitlint/cli": "^19",
"@commitlint/config-conventional": "^19",
"better-npm-audit": "3.7.3",
"commit-and-tag-version": "12",
"commitlint": "19",
"eslint": "8",
"eslint-config-prettier": "9",
"eslint-config-standard": "17",
"eslint-plugin-mocha": "10",
"eslint-plugin-prettier": "5",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"prettier": "3",
"serve": "14.2.1",
"sort-package-json": "2.10.1"
},
"engines": {
"node": ">=8"
}
}