-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "fbp-protocol-healthcheck",
"version": "1.1.0",
"description": "Health checking utility for FBP protocol runtimes",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run spec",
"lint": "eslint lib/*.js index.js",
"spec": "nyc mocha --reporter spec spec/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/flowbased/fbp-protocol-healthcheck.git"
},
"author": "Henri Bergius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flowbased/fbp-protocol-healthcheck/issues"
},
"homepage": "https://github.com/flowbased/fbp-protocol-healthcheck#readme",
"dependencies": {
"fbp-protocol-client": "^0.3.3"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^8.1.3",
"nyc": "^15.0.0",
"websocket": "^1.0.24"
},
"bin": {
"fbp-protocol-healthcheck": "./bin/fbp-protocol-healthcheck"
},
"nyc": {
"include": [
"lib/*.js",
"*.js"
]
}
}