Skip to content

Commit ae4b5e3

Browse files
author
James
committed
cleanup package.json
1 parent ab7f797 commit ae4b5e3

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
language: node_js
22
node_js:
33
- '12.14.0'
4-
after_success: npm run coverage
4+
after_success: npm run coveralls

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
"description": "Lambda function for executing pg_dump and streaming the output to s3.",
55
"main": "index.js",
66
"dependencies": {
7+
"aws-sdk": "2.595.0",
78
"moment": "2.24.0",
89
"through2": "3.0.1"
910
},
1011
"devDependencies": {
11-
"aws-sdk": "2.595.0",
1212
"chai": "4.2.0",
1313
"chai-as-promised": "7.1.1",
1414
"coveralls": "3.0.9",
@@ -27,9 +27,10 @@
2727
"scripts": {
2828
"test": "NODE_ENV=test mocha test",
2929
"test:watch": "NODE_ENV=test mocha test -w",
30-
"coverage": "nyc --reporter=text-lcov mocha test| coveralls",
31-
"coverage-html": "nyc --reporter=html --reporter=text mocha test",
32-
"deploy": "bash bin/makezip.sh"
30+
"coverage": "NODE_ENV=test nyc --reporter=text mocha test",
31+
"coveralls": "NODE_ENV=test nyc --reporter=text-lcov mocha test | coveralls",
32+
"coverage-html": "NODE_ENV=test nyc --reporter=html --reporter=text mocha test",
33+
"deploy": "bin/makezip.sh"
3334
},
3435
"repository": {
3536
"type": "git",

0 commit comments

Comments
 (0)