-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "node-red-contrib-tankerkoenig2",
"description": "Node-RED nodes to communicate with the API of Tankerkoenig.de",
"version": "1.0.6",
"main": "src/tankerkoenig.js",
"scripts": {
"test": "node ./dev/start.js",
"lint": "eslint --ext js,html,json,yml src dev",
"lint:report": "eslint --output-file eslint_report.json --format json --ext js,html,json,yml src dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dennis14e/node-red-contrib-tankerkoenig2.git"
},
"keywords": [
"node-red",
"tankerkoenig",
"api"
],
"author": "Dennis Neufeld <git@dneufeld.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dennis14e/node-red-contrib-tankerkoenig2/issues"
},
"homepage": "https://github.com/Dennis14e/node-red-contrib-tankerkoenig2#readme",
"devDependencies": {
"eslint": "~8.57.0",
"eslint-plugin-html": "~8.1.0",
"eslint-plugin-json-es": "~1.6.0",
"express": "~4.21.0",
"node-red": "~4.0.2"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"tankerkoenig2": "src/tankerkoenig.js"
}
},
"engines": {
"node": ">=12"
}
}