-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "pgdump-aws-lambda",
"version": "2.0.0",
"description": "Lambda function for executing pg_dump and streaming the output to s3.",
"main": "index.js",
"dependencies": {
"aws-sdk": "2.1658.0",
"moment": "2.30.1"
},
"devDependencies": {
"aws-sdk-mock": "6.0.4",
"chai": " 4.4.1",
"chai-as-promised": "7.1.2",
"coveralls": "3.1.1",
"eslint": "8.26.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"mocha": "10.6.0",
"mock-spawn": "0.2.6",
"mockdate": "3.0.5",
"nyc": "17.0.0",
"rewire": "7.0.0",
"sinon": "18.0.0",
"tmp": "0.2.3"
},
"scripts": {
"test": "NODE_ENV=test mocha test",
"test:watch": "NODE_ENV=test mocha test -w",
"coverage": "NODE_ENV=test nyc --reporter=text mocha test",
"coveralls": "NODE_ENV=test nyc --reporter=text-lcov mocha test | coveralls",
"coverage-html": "NODE_ENV=test nyc --reporter=html --reporter=text mocha test",
"makezip": "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"
}