-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.01 KB
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
44
45
{
"name": "node-red-contrib-http-instance",
"version": "1.0.4",
"description": "Http(s) server instance with in and response nodes",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"author": "bmdevx",
"license": "Apache-2.0",
"keywords": [
"node-red",
"http",
"https",
"express",
"server"
],
"node-red": {
"nodes": {
"node-inst-server": "nodes/node-inst-server.js",
"node-in-out": "nodes/node-in-out.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/bmdevx/node-red-contrib-http-instance.git"
},
"dependencies": {
"body-parser": "^2.2.2",
"content-type": "^1.0.5",
"cookie-parser": "^1.4.7",
"cords": "^1.0.4",
"express": "^5.2.1",
"hash-sum": "^2.0.0",
"is-utf8": "^0.2.1",
"media-typer": "^1.1.0",
"multer": "^2.1.1",
"on-headers": "^1.1.0",
"raw-body": "^3.0.2"
},
"devDependencies": {
"node-red": "^4.1.10",
"node-red-node-test-helper": "^0.3.6",
"should": "^13.2.3"
}
}