-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.09 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "node-red-contrib-aloes",
"version": "1.1.5",
"description": "Nodes to use Aloes data and events in Node-red",
"scripts": {
"lint": "npx eslint --ext js .",
"test": "./node_modules/.bin/mocha ./test/**/*_spec.js"
},
"author": "Edouard Maleix <[email protected]> (https://getlarge.eu)",
"license": "ISC",
"node-red": {
"nodes": {
"aloes-network": "aloes-network/aloes-network.js",
"aloes-rx": "aloes-rx/aloes-rx.js",
"aloes-tx": "aloes-tx/aloes-tx.js",
"extract-sensor-resources": "extract-sensor-resources/extract-sensor-resources.js",
"create-sensor": "create-sensor/create-sensor.js",
"filter-sensor": "filter-sensor/filter-sensor.js",
"get-aloes-devices": "get-aloes-devices/get-aloes-devices.js",
"get-instance": "get-instance/get-instance.js",
"set-instance": "set-instance/set-instance.js",
"set-aloes-topic": "set-aloes-topic/set-aloes-topic.js",
"set-internal-topic": "set-internal-topic/set-internal-topic.js",
"to-boolean": "to-boolean/to-boolean.js",
"to-buffer": "to-buffer/to-buffer.js",
"to-number": "to-number/to-number.js",
"to-string": "to-string/to-string.js",
"update-instance": "update-instance/update-instance.js"
}
},
"dependencies": {
"ajv": "^6.12.3",
"aloes-handlers": "^1.3.5",
"aloes-light-handlers": "^1.1.3",
"axios": "^0.21.1",
"is-utf8": "^0.2.1",
"minimatch": "^3.0.4",
"mqtt": "^4.2.6",
"oma-json": "^1.1.4"
},
"devDependencies": {
"aedes": "^0.44.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.17.1",
"mocha": "^8.1.2",
"node-red": "^1.2.7",
"node-red-node-test-helper": "^0.2.5",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"should": "^13.2.3"
},
"eslintConfig": {
"root": true,
"env": {
"es6": true,
"node": true
},
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"import/no-unresolved": "off",
"import/extensions": "off",
"import/prefer-default-export": "off",
"no-param-reassign": "off",
"one-var-declaration-per-line": "off",
"prettier/prettier": "error"
},
"globals": {
"require": true
}
},
"eslintIgnore": [
"/node_modules/"
],
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"jsxBracketSameLine": true,
"trailingComma": "all"
},
"mocha": {
"recursive": true,
"check-leaks": true,
"bail": false,
"slow": 500,
"reporter": "spec"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"exclude": [
"**/*.e2e.test.js",
"**/*._spec.js"
],
"report-dir": "./coverage",
"check-coverage": true,
"functions": 70,
"lines": 70
},
"repository": {
"type": "git",
"url": "https://framagit.org/aloes/node-red-contrib-aloes"
},
"keywords": [
"node-red",
"aloes"
]
}