-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 970 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
37
38
{
"name": "node-red-contrib-users",
"version": "0.1.10",
"description": "A node used to quickly build a simple user system to control access to your http nodes on Node-RED.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SenseTecnic/node-red-contrib-users.git"
},
"keywords": [
"node-red",
"user management"
],
"node-red": {
"nodes": {
"users_config": "nodes/users_config.js",
"users_isloggedin": "nodes/users_isloggedin.js"
}
},
"contributors": [
{
"name": "Ted Huang"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SenseTecnic/node-red-contrib-users/issues"
},
"homepage": "https://github.com/SenseTecnic/node-red-contrib-users#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie": "^0.3.1",
"jsonwebtoken": "^8.2.1"
}
}