forked from jameshy/pgdump-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "pgdump-aws-lambda",
"version": "1.1.6",
"description": "Lambda function for executing pg_dump and streaming the output to s3.",
"main": "index.js",
"dependencies": {
"bluebird": "^3.5.3",
"moment": "^2.24.0",
"through2": "^3.0.0"
},
"devDependencies": {
"cron": "^1.2.1",
"aws-sdk": "^2.45.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.13.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mock-spawn": "^0.2.6",
"nyc": "^10.2.0",
"rewire": "^2.5.2",
"sinon": "^2.1.0"
},
"scripts": {
"test": "mocha test",
"test:watch": "mocha test -w",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage-html": "nyc --reporter=html --reporter=text mocha test",
"deploy": "bash bin/makezip.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jameshy/pgdump-aws-lambda.git"
},
"keywords": [
"lambda",
"s3",
"pg_dump",
"postgresql",
"backup"
],
"author": "James Hutchby",
"license": "MIT",
"bugs": {
"url": "https://github.com/jameshy/pgdump-aws-lambda/issues"
},
"homepage": "https://github.com/jameshy/pgdump-aws-lambda#readme"
}