-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.21 KB
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
{
"name": "@maxdome/eb-deploy",
"version": "2.1.4",
"description": "CLI for AWS Elastic Beanstalk deployments",
"main": "src/cli.js",
"scripts": {
"lint": "semistandard",
"test": "mocha",
"test:coverage": "nyc npm test",
"precommit": "npm run lint && npm test"
},
"bin": {
"eb-deploy": "./bin/eb-deploy"
},
"keywords": [
"aws",
"elastic beanstalk",
"elastic",
"beanstalk",
"deployment",
"cli"
],
"author": "Fabian Schneider <fabian.schneider@maxdome.de>",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.257.1",
"commander": "^2.15.1",
"delay": "^3.0.0",
"shell-tag": "^1.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"mock-require": "^3.0.2",
"nyc": "^12.0.2",
"semistandard": "^12.0.1",
"sinon": "^6.0.0",
"sinon-chai": "^3.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxdome/eb-deploy.git"
},
"bugs": {
"url": "https://github.com/maxdome/eb-deploy/issues"
},
"homepage": "https://github.com/maxdome/eb-deploy#readme",
"engines": {
"node": ">=7.6.0"
},
"publishConfig": {
"access": "public"
}
}