-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@alexandrainst/node-red-http-basic-auth",
"version": "3.2.0",
"description": "Node-RED node for HTTP Basic Authorization",
"keywords": [
"node-red",
"node-red-contrib",
"http",
"basic",
"auth",
"authorization",
"access",
"htpasswd",
"password",
"rfc2617",
"rfc7617"
],
"author": {
"name": "Alexandre Alapetite",
"url": "https://github.com/Alkarex"
},
"contributors": [
{
"name": "Endemecio Santana",
"url": "https://github.com/endemecio02"
},
{
"name": "Paulo Albuquerque",
"url": "https://github.com/pjalbuquerque"
}
],
"license": "GPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/alexandrainst/node-red-http-basic-auth.git"
},
"engines": {
"node": ">=12"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"http-basic-auth": "nodes/http-auth.js",
"http-basic-auth-file": "nodes/http-auth-file.js",
"http-basic-auth-multiple": "nodes/http-auth-multiple.js"
}
},
"dependencies": {
"bcryptjs": "^2.4.3"
},
"optionalDependencies": {
"bcrypt": "^5.1.1"
},
"devDependencies": {
"eslint": "^9.8.0",
"@eslint/js": "^9.8.0",
"eslint-plugin-html": "^8.1.1",
"globals": "^15.9.0",
"markdownlint-cli": "^0.41.0",
"neostandard": "^0.11.2",
"node-red-contrib-mock-cli": "^1.4.3"
},
"scripts": {
"eslint": "eslint .",
"eslint_fix": "eslint --fix .",
"markdownlint": "markdownlint '**/*.md'",
"markdownlint_fix": "markdownlint --fix '**/*.md'",
"fix": "npm run rtlcss && npm run eslint_fix && npm run markdownlint_fix",
"pretest": "npm run eslint && npm run markdownlint",
"start": "node ./index.js",
"test": "./test.sh"
}
}