Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
fix: upgrade nyc, which had 100,000,00 broken GreenKeeper pulls while…
Browse files Browse the repository at this point in the history
… we're at it
  • Loading branch information
Benjamin Coe committed Nov 8, 2016
1 parent ff48abd commit 1f7289c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
"main": "./lib/server.js",
"bin": "./bin/oauth2-server-pg.js",
"scripts": {
"posttest": "standard",
"posttest": "if pgrep \"docker\" > /dev/null; then npm run pg-test-down; fi",
"pretest": "if pgrep \"docker\" > /dev/null; then (npm run pg-test-down || true) && npm run pg-test-up; sleep 5; fi",
"test": "nyc mocha --timeout=5000 test/*.js",
"posttest": "if pgrep \"docker\" > /dev/null; then npm run pg-test-down; fi",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pg-test-up": "docker run --name oauth2serverpg_postgres_1 -e POSTGRES_DB=oauth2_server -p 5432:5432/tcp -d postgres:9.4 postgres",
"pg-test-down": "docker rm -f oauth2serverpg_postgres_1",
Expand Down Expand Up @@ -53,15 +52,16 @@
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"mocha": "^3.0.1",
"nyc": "^7.0.0",
"nyc": "^8.4.0",
"simple-oauth2": "^0.5.1",
"standard": "^7.1.2",
"standard-version": "^3.0.0"
},
"nyc": {
"exclude": [
"**/migrations/**",
"**/test/**"
"**/test/**",
"node_modules"
]
}
}

0 comments on commit 1f7289c

Please sign in to comment.