connect-ready 1.0.9 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "connect-ready",
3
- "version": "1.0.9",
3
+ "version": "1.0.13",
4
4
  "description": "express route that indicates whether a service is ready or not",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "mocha test",
8
- "cover": "nyc --all --reporter=lcov --reporter=text-summary npm run test",
8
+ "test:cover": "c8 --reporter=lcov --reporter=text npm test",
9
9
  "lint": "eslint *.js"
10
10
  },
11
11
  "repository": {
@@ -24,16 +24,17 @@
24
24
  },
25
25
  "homepage": "https://github.com/dcolens/connect-ready#readme",
26
26
  "devDependencies": {
27
- "coveralls": "^3.1.0",
28
- "eslint": "^7.6.0",
29
- "eslint-config-prettier": "^6.11.0",
30
- "eslint-plugin-prettier": "^3.1.4",
31
- "mocha": "^8.1.1",
32
- "nyc": "^15.1.0",
33
- "prettier": "^2.0.5",
27
+ "c8": "^7.11.0",
28
+ "coveralls": "^3.1.1",
29
+ "eslint": "^8.9.0",
30
+ "eslint-config-prettier": "^8.3.0",
31
+ "eslint-plugin-prettier": "^4.0.0",
32
+ "mocha": "^9.2.0",
33
+ "prettier": "^2.5.1",
34
34
  "toobusy-js": "^0.5.1"
35
35
  },
36
36
  "optionalDependencies": {
37
37
  "toobusy-js": "^0.5.1"
38
- }
38
+ },
39
+ "dependencies": {}
39
40
  }