-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 1.52 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
{
"name": "node-red-contrib-postgresql",
"version": "0.14.2",
"description": "Node-RED node for PostgreSQL, supporting parameters, split, back-pressure",
"author": {
"name": "Alexandre Alapetite",
"url": "https://github.com/Alkarex"
},
"contributors": [
{
"name": "Andrea Batazzi",
"url": "https://github.com/andreabat"
},
{
"name": "Yeray Medina López",
"url": "https://github.com/ymedlop"
},
{
"name": "Hamza Jalouaja",
"url": "https://github.com/HySoaKa"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/alexandrainst/node-red-contrib-postgresql"
},
"keywords": [
"backpressure",
"node-red-contrib",
"node-red",
"nodered",
"postgres",
"postgresql",
"timescale"
],
"engines": {
"node": ">=8"
},
"node-red": {
"version": ">=0.20.0",
"nodes": {
"postgresql": "postgresql.js"
}
},
"dependencies": {
"mustache": "^4.2.0",
"pg": "^8.12.0",
"pg-cursor": "^2.11.0"
},
"devDependencies": {
"eslint": "^9.8.0",
"@eslint/js": "^9.8.0",
"eslint-plugin-html": "^8.1.1",
"globals": "^15.9.0",
"markdownlint-cli": "^0.43.0",
"neostandard": "^0.11.2",
"mocha": "^10.7.0"
},
"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",
"mocha": "mocha",
"test": "npm run mocha"
}
}