-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 958 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 958 Bytes
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
{
"name": "aws-lambda-compress",
"version": "0.0.1",
"description": "Creates zip files of your code that can be uploaded to AWS Lambda.",
"main": "build/index.js",
"bin": {
"aws-lambda-compress": "./bin/aws-lambda-compress"
},
"files": [
"bin/",
"build/"
],
"scripts": {
"clean": "rm -rf build && rm -rf dist",
"tsc": "tsc",
"build": "npm run clean && npm run tsc",
"docs": "docco src/*.ts",
"test": "npm run build && node_modules/.bin/dharma --configFile=dharma.conf.js run"
},
"keywords": [
"aws",
"lambda",
"compress"
],
"author": "miked",
"license": "MIT",
"devDependencies": {
"dharma": "0.0.2",
"typescript": "^1.8.0-dev.20151029"
},
"dependencies": {
"archiver": "^0.16.0",
"aws-sdk": "^2.2.13",
"detective": "^4.3.1",
"es6-promisify": "^3.0.0",
"glob": "^5.0.14",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"resolve": "^1.1.6"
}
}