-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 885 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
{
"name": "node-phantomjs-lambda-template",
"version": "0.0.1",
"description": "The bare minimum for a phantomjs app running on Amazon Lambda.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/narainsagar/node-phantomjs-lambda-template.git"
},
"author": "Narain Sagar",
"license": "isc",
"bugs": {
"url": "https://github.com/narainsagar/node-phantomjs-lambda-template/issues"
},
"homepage": "https://github.com/narainsagar/node-phantomjs-lambda-template",
"dependencies": {},
"devDependencies": {
"aws-sdk": "^2.1.39",
"node-lambda": "^0.6.1",
"phantomjs": "^1.9.17",
"mocha": "^2.3.2"
},
"scripts": {
"setup": "node-lambda setup",
"start": "node-lambda run",
"deploy": "node-lambda deploy",
"test": "mocha test/*"
},
"keywords": [
"phantomjs",
"aws",
"lambda"
]
}