-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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": "@joblocal/aws-cfn-deployment",
"version": "1.0.1",
"description": "Makes creating or updating of AWS CloudFormations so easy your build & deployment pipelines can do it.",
"main": "src/index.js",
"author": "joblocal GmbH",
"license": "MIT",
"scripts": {
"lint": "eslint . --cache",
"test": "jest",
"test:watch": "yarn test --watch --onlyChanged",
"test:coverage": "yarn test --coverage",
"validate": "npm-run-all --parallel lint test"
},
"pre-push": {
"run": "validate",
"silent": true
},
"bin": {
"aws-cfn-deployment": "./src/index.js"
},
"dependencies": {
"aws-sdk": "^2.334.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3",
"pre-push": "^0.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joblocal/aws-cfn-deployment.git"
},
"keywords": [
"aws",
"cfn",
"cloudformation",
"cli",
"node",
"javascript",
"es6"
],
"bugs": {
"url": "https://github.com/joblocal/aws-cfn-deployment/issues"
},
"homepage": "https://github.com/joblocal/aws-cfn-deployment#readme"
}