-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 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
74
75
76
77
78
79
80
{
"name": "aws-lambda-deployer",
"version": "0.3.0",
"description": "Facilitates deploying multiple Node.js-based AWS Lambda functions to multiple environments.",
"main": "index.js",
"author": "Zentrick nv (https://www.zentrick.com/)",
"contributors": [
"Tim De Pauw <[email protected]>"
],
"keywords": [
"aws",
"lambda",
"deploy",
"zip",
"bulk",
"batch",
"gulp"
],
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"files": [
"lib/",
"index.js"
],
"scripts": {
"clean": "gulp clean",
"build": "gulp build",
"prepublish": "in-publish && npm run build || not-in-publish",
"test": "gulp test"
},
"repository": "zentrick/aws-lambda-deployer",
"bugs": "https://github.com/zentrick/aws-lambda-deployer/issues",
"dependencies": {
"archiver": "^1.1.0",
"babel-runtime": "^6.11.6",
"bluebird": "^3.4.6",
"cross-spawn-promise": "^0.8.0",
"fs-extra": "^0.30.0",
"fs-promise": "^0.5.0",
"lodash.template": "^4.4.0",
"mkdirp": "^0.5.1",
"node-aws-lambda": "^0.1.8",
"npm": "^2.15.9",
"pify": "^2.3.0",
"read-pkg-up": "^1.0.1",
"resolve": "^1.1.7",
"temp": "^0.8.3"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^1.1.1",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^3.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-standard": "^7.0.1",
"in-publish": "^2.0.0",
"isparta": "^4.0.0",
"run-sequence": "^1.2.2"
},
"standard": {
"parser": "babel-eslint"
},
"greenkeeper": {
"ignore": [
"gulp-standard",
"npm"
]
}
}