-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "connect-ready",
"version": "1.0.14",
"description": "express route that indicates whether a service is ready or not",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha test",
"test:cover": "c8 --reporter=lcov --reporter=text npm test",
"lint": "eslint *.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcolens/connect-ready.git"
},
"keywords": [
"connect",
"express",
"ready"
],
"author": "Didier Colens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcolens/connect-ready/issues"
},
"homepage": "https://github.com/dcolens/connect-ready#readme",
"devDependencies": {
"c8": "^9.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"toobusy-js": "^0.5.1"
},
"optionalDependencies": {
"toobusy-js": "^0.5.1"
},
"dependencies": {}
}