-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "node-red-contrib-decentralized-computation",
"version": "0.0.2",
"description": "Nodes for Decentralized Flow Execution with Edge Devices (micropython)",
"dependencies": {
"axios": "^0.21.1",
"devicehandler": "file:./devicehandler",
"https-proxy-agent": "*",
"is-utf8": "0.2.1",
"mqtt": "^4.2.6"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.12.0",
"husky": "^4.3.8",
"lint-staged": "^11.0.0",
"prettier": "^2.1.2"
},
"scripts": {
"start": "node-red",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --write --ignore-path .gitignore .",
"format-check": "prettier --check --ignore-path .gitignore ."
},
"author": {
"name": "signext",
"url": "http://signext.github.io/"
},
"contributors": [
"pmcosta",
"jpdias"
],
"keywords": [
"node-red",
"decentralized-execution"
],
"node-red": {
"nodes": {
"and": "and/and.js",
"if": "if/if.js",
"nothing": "nothing/nothing.js",
"orchestrator": "orchestrator/orchestrator.js",
"proxymqtt": "proxymqtt/proxymqtt.js",
"registry": "registry/registry.js",
"temperature-humidity": "temperature-humidity/temperaturehumidity.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/SIGNEXT/node-red-contrib-decentralized-computation.git"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,html,yml,json}": "prettier --write"
}
}