-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "aws-lambda-upload",
"version": "0.2.4",
"description": "Package and upload an AWS lambda with its minimal dependencies",
"main": "dist/main",
"typings": "dist/main",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "tsc && mocha -R list test/",
"setup-localstack": "virtualenv venv && venv/bin/pip install localstack"
},
"bin": {
"aws-lambda-upload": "bin/aws-lambda-upload"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gristlabs/aws-lambda-upload.git"
},
"keywords": [
"aws",
"lambda",
"upload",
"zip"
],
"author": "Dmitry S, Grist Labs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gristlabs/aws-lambda-upload/issues"
},
"homepage": "https://github.com/gristlabs/aws-lambda-upload#readme",
"dependencies": {
"aws-sdk": "^2.141.0",
"bluebird": "^3.5.0",
"browserify": "^16.5.2",
"collect-js-deps": "^0.1.2",
"commander": "^2.10.0",
"fs-extra": "^4.0.2",
"tmp": "0.0.33",
"yaml-cfn": "^0.2.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.18",
"@types/commander": "^2.11.0",
"@types/fs-extra": "^4.0.5",
"@types/js-yaml": "^3.10.0",
"@types/node": "^6.0.92",
"@types/tmp": "0.0.33",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"tsify": "^3.0.3",
"typescript": "^2.5.3"
}
}