-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "node-tachyon",
"version": "2.1.4",
"repository": {
"type": "git",
"url": "https://github.com/humanmade/node-tachyon.git"
},
"description": "human made tachyon in node",
"main": "index.js",
"config" : {
"bucket":"",
"path":"",
"region":"us-east-1",
"function-name" : ""
},
"scripts": {
"build-docker" : "docker build . -t tachyon-build",
"build-node-modules": "rm -R node_modules ; docker run -v `pwd`:/build -t tachyon-build",
"build-zip": "zip -r lambda.zip ./node_modules/ index.js proxy-file.js lambda-handler.js",
"upload-zip": "aws s3 --region=$npm_config_region cp ./lambda.zip s3://$npm_config_bucket/$npm_config_path",
"update-function-code": "aws lambda update-function-code --region $npm_config_region --function-name $npm_config_function_name --zip-file fileb://`pwd`/lambda.zip"
},
"author": "Joe Hoyle",
"license": "ISC",
"dependencies": {
"animated-gif-detector": "^1.2.0",
"sharp": "^0.17.3"
},
"devDependencies": {
"aws-sdk": "^2.2.17",
"cli-table": "^0.3.1",
"filesize": "^3.5.10"
}
}