-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 896 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 896 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": "cfbuild",
"version": "1.1.6",
"description": "CloudFormation build tool",
"main": "index.js",
"bin": {
"cfbuild": "./bin/cfbuild"
},
"scripts": {
"validate": "standard bin/**/*.js lib/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ovatto/cfbuild.git"
},
"author": "Olli Vättö <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ovatto/cfbuild/issues"
},
"homepage": "https://github.com/ovatto/cfbuild#readme",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"archiver": "^2.1.1",
"colors": "^1.2.1",
"command-line-args": "^5.0.2",
"cross-spawn": "7.0.0",
"fast-glob": "^2.2.0",
"fs-extra": "^5.0.0",
"js-yaml": "^4.0.0"
},
"devDependencies": {
"standard": "^12.0.1"
}
}