-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 904 Bytes
/
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
{
"name": "phantom-lambda-http-check",
"version": "0.0.2",
"description": "The bare minimum for a phantomjs app running on Amazon Lambda.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/rebelmail/node-lambda-template.git"
},
"author": "motdotla",
"license": "isc",
"bugs": {
"url": "https://github.com/rebelmail/node-lambda-template/issues"
},
"homepage": "https://github.com/rebelmail/node-lambda-template",
"dependencies": {
"aws-sdk": "^2.1.39",
"bluebird": "^3.0.6",
"mailcomposer": "^1.1.0",
"node-env-file": "^0.1.8",
"node-lambda": "^0.6.1",
"request": "^2.67.0"
},
"devDependencies": {
"phantomjs": "^1.9.17"
},
"scripts": {
"setup": "node-lambda setup",
"start": "node-lambda run",
"deploy": "node-lambda deploy"
},
"keywords": [
"phantomjs",
"aws",
"lambda"
]
}