-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "node-red-contrib-isportreachable",
"version": "0.0.1",
"description": "Wrapper util on sindresorhus/is-port-reachable as a node-red node.",
"main": "isPortReachable.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hgill/node-red-contrib-isPortReachable.git"
},
"node-red": {
"nodes": {
"isPortReachable": "isPortReachable.js"
}
},
"keywords": [
"node-red",
"is-port-reachable",
"port"
],
"author": "Harpreet Gill",
"license": "MIT",
"bugs": {
"url": "https://github.com/hgill/node-red-contrib-isPortReachable/issues"
},
"homepage": "https://github.com/hgill/node-red-contrib-isPortReachable#readme",
"devDependencies": {
"node-red": "^1.3.3",
"node-red-node-test-helper": "^0.2.7"
},
"dependencies": {
"is-port-reachable": "^3.0.0"
}
}