forked from mikkotikkanen/cfn-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "cfn-deploy",
"version": "1.1.8",
"description": "Simple AWS CloudFormation deployments",
"keywords": [
"aws",
"cloudformation",
"deploy",
"cli"
],
"author": "Mikko Tikkanen <mikko.tikkanen@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/mikkotikkanen/cfn-deploy.git"
},
"engines": {
"node": ">=6.4.0"
},
"files": [
"bin/",
"libs/"
],
"license": "ISC",
"main": "index.js",
"bin": {
"cfn-deploy": "./bin/cli.js"
},
"dependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/chalk": "^2.2.0",
"@types/is-url": "^1.2.28",
"@types/log-update": "^3.1.0",
"@types/node": "^14.0.4",
"@types/update-notifier": "^4.1.0",
"@types/yargs": "^15.0.5",
"aws-sdk": "^2.681.0",
"chalk": "^4.0.0",
"is-installed-globally": "^0.3.2",
"is-url": "^1.2.4",
"log-update": "^4.0.0",
"update-notifier": "^4.1.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"aws-sdk-mock": "^5.1.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.1",
"npm-check": "^5.9.2",
"npm-run-all": "^4.1.5",
"semantic-release": "^17.0.7",
"typescript": "^3.9.3"
},
"scripts": {
"test": "npm-run-all test:*",
"test:eslint": "eslint .",
"test:tsc": "tsc",
"test:jest": "jest",
"update": "npm-check -u",
"prepublishOnly": "npm test",
"release": "semantic-release"
}
}