-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 938 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
{
"name": "aws-lambda-packager",
"version": "1.0.16",
"description": "A utilty to package node js services to a zip that can be deployed to aws",
"main": "index.js",
"scripts": {
"test": "mocha tests/index.test.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- tests/index.test.js",
"cobertura": "istanbul report cobertura --root coverage --dir coverage",
"coverage-badge": "istanbul report cobertura --root coverage --dir coverage && istanbul-cobertura-badger -e 90 -g 65 -r coverage/cobertura-coverage.xml -d badges/ -b coverage",
"deploy": "npm version patch && npm publish"
},
"dependencies": {
"jszip": "3.1.1"
},
"keywords": [
"lambda",
"packager"
],
"author": "shasinha",
"license": "ISC",
"bin": {
"aws-lambda-packager": "./bin/lambda-packager.js"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^3.5.3"
}
}