-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "cloudfoundation",
"version": "1.0.0",
"description": "The CLI tool for creating, managing, and deploying CloudFormation templates and projects",
"main": "src/index.js",
"author": "J Cole Morrison",
"preferGlobal": true,
"bin": {
"cfdn": "bin/cloudfoundation.js"
},
"license": "MIT",
"keywords": [
"aws",
"cloudformation",
"template",
"scaffolding",
"cli",
"node",
"node.js"
],
"scripts": {
"lint": "eslint 'src/**/*.js'",
"start": "node .",
"test": "nyc -r text-summary yarn test:unit",
"test:unit": "NODE_ENV=test mocha --recursive",
"test:unit:cover": "nyc -r text-summary yarn test:unit && yarn test:unit:report",
"test:unit:report": "nyc -r html report",
"test:unit:run": "mocha -R spec",
"test:unit:watch": "mocha -w -R spec",
"posttest": "yarn lint"
},
"dependencies": {
"aws-sdk": "^2.177.0",
"chalk": "^2.3.0",
"commander": "^2.11.0",
"fs-extra": "^4.0.2",
"glob": "^7.1.2",
"inquirer": "^4.0.0",
"jshint": "^2.9.5",
"jsonlint": "^1.6.2",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"sinon": "^4.1.3"
}
}