-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "cloudformation-extensions",
"version": "0.0.3",
"description": "Extensions to Amazon CloudFormation",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"tests": "./node_modules/mocha/bin/mocha test --recursive",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- test --recursive",
"test": "npm run lint && npm run tests && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshbalfour/cloudformation-extensions.git"
},
"keywords": [
"aws",
"amazon",
"cloudformation",
"cfn",
"cloud",
"formation"
],
"author": "Josh Balfour <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshbalfour/cloudformation-extensions/issues"
},
"homepage": "https://github.com/joshbalfour/cloudformation-extensions#readme",
"dependencies": {
"cli": "0.11.2",
"es6-promisify": "4.1.0"
},
"bin": {
"cfnex": "./bin/cfnex"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"istanbul": "0.4.4",
"jshint": "2.9.2",
"mocha": "2.5.3",
"type-detect": "2.0.1"
}
}