This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.77 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": "aws-cloudformation-simple-cli",
"author": "carl@bynordenfelt.se",
"description": "A simple command line tool for managing CloudFormation stacks",
"version": "1.1.1",
"license": "MIT",
"preferGlobal": true,
"scripts": {
"clean": "rm -rf node_modules",
"lint": "node_modules/.bin/eslint --max-warnings 0 src tests",
"test:unit": "LOG_4NJS_LEVEL=suppress nyc --all node_modules/.bin/_mocha ./tests/unit --recursive && nyc report --reporter=html",
"coverage": "nyc check-coverage --statement 100 --branches 100 --functions 100 --lines 100 ",
"coverage:report": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run test:unit && npm run coverage",
"package": "npm run clean && npm i && npm run test && npm publish"
},
"bin": {
"aws-cfn": "src/index.js"
},
"dependencies": {
"aws-sdk": "^2.368.0",
"lodash": "^4.17.11",
"log4njs": "^1.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/carlnordenfelt/aws-cloudformation-simple-cli"
},
"keywords": [
"Amazon",
"AWS",
"CloudFormation",
"CLI",
"Command line"
],
"issues": {
"url": "https://github.com/carlnordenfelt/aws-cloudformation-simple-cli/issues"
},
"homepage": "https://github.com/carlnordenfelt/aws-cloudformation-simple-cli",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-defaults": "9.0.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.14.0",
"mocha": "^5.2.0",
"mockery": "^2.1.0",
"nyc": "^13.1.0",
"sinon": "^7.3.2"
}
}