-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 824 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 824 Bytes
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
{
"name": "@cfn2/parser",
"version": "0.2.0",
"description": "CloudFormation template parser",
"author": "Kengo Nakatsuka <kengo.nakatsuka@gmail.com>",
"bugs": {
"url": "https://github.com/cfn2/cfn2-parser/issues"
},
"dependencies": {
"chalk": "^2.4.2",
"declarative-traverser": "^0.1.0"
},
"devDependencies": {
"@cfn2/read-template": "^0.1.0",
"tape": "^4.10.1"
},
"homepage": "https://github.com/cfn2/cfn2-parser",
"keywords": [
"aws",
"cfn2",
"cloudformation"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "git+https://github.com/cfn2/cfn2-parser.git"
},
"scripts": {
"prepublishOnly": "npm test",
"postpublish": "npm-sns",
"test": "tape test/test*.js"
},
"files": [
"README.md",
"lib/"
]
}