-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.88 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
66
67
68
69
70
71
72
73
{
"name": "gulp-elasticbeanstalk-deploy",
"version": "1.1.0",
"description": "Gulp plugin for deploying into Amazon Elastic Beanstalk instance",
"main": "lib/index.js",
"scripts": {
"test": "eslint src/ test/ && cross-env NODE_ENV=test nyc mocha",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"build": "babel src -d lib",
"preversion": "npm test",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Souler/gulp-elasticbeanstalk-deploy.git"
},
"keywords": [
"gulp",
"gulp-plugin",
"plugin",
"amazon",
"aws",
"eb",
"elastic",
"beanstalk",
"beans",
"talk",
"elasticbeanstalk",
"deploy",
"upload"
],
"author": "Juan José Herrero Barbosa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Souler/gulp-elasticbeanstalk-deploy/issues"
},
"homepage": "https://github.com/Souler/gulp-elasticbeanstalk-deploy#readme",
"dependencies": {
"aws-sdk": "^2.5.5",
"babel-runtime": "^6.11.6",
"gulp-util": "^3.0.7",
"gulp-zip": "^3.2.0",
"left-pad": "^1.1.1",
"lodash": "^4.8.2",
"plexer": "^1.0.1",
"through2": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-3": "^6.11.0",
"babel-register": "^6.14.0",
"coveralls": "^2.11.12",
"cross-env": "^3.1.4",
"eslint": "^3.13.0",
"eslint-config-google": "^0.7.1",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"should": "^11.1.0",
"sinon": "^1.17.5"
},
"engines": {
"node": ">=4"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}