forked from daggerml/cfn-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.52 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.52 KB
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
{
"name": "cfn-tool",
"version": "5.7.9",
"description": "AWS CloudFormation template processing and stack deployment tool.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"chalk": "^4.1.0",
"getopts": "daggerml/getopts#daggerml",
"js-yaml": "daggerml/js-yaml#daggerml",
"shell-quote": "^1.7.2",
"source-map-support": "^0.5.19",
"uuid": "8.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"coffeescript": "2.5.1",
"mocha": "8.1.3"
},
"scripts": {
"test": "mocha 'test/**/*.tests.coffee'",
"coffee": "coffee"
},
"mocha": {
"bail": true,
"require": [
"coffeescript/register"
],
"extension": [
"coffee"
],
"watch-files": [
"lib/**",
"test/**"
]
},
"coffeelintConfig": {
"max_line_length": {
"value": 120,
"level": "warn",
"limitComments": true
},
"no_backticks": {
"level": "ignore"
},
"no_unnecessary_fat_arrows": {
"level": "ignore"
},
"no_nested_string_interpolation": {
"level": "ignore"
}
},
"bin": {
"cfn-tool": "bin/cfn-tool",
"cfn-tool-completer": "bin/cfn-tool-completer"
},
"man": [
"./man/cfn-tool.1",
"./man/cfn-tool-deploy.1",
"./man/cfn-tool-transform.1",
"./man/cfn-tool-update.1",
"./man/cfn-tool-macros.7"
],
"keywords": [
"aws",
"cloudformation",
"yaml",
"template",
"deploy"
],
"author": "micha.niskin@gmail.com",
"license": "MIT"
}