-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "node-red-contrib-fiware_official",
"version": "1.0.3",
"description": "Node-Red FIWARE NGSIv2 & ETSI NGSI-LD official implementation",
"scripts": {
"test": "mocha \"test/**/*_spec.js\"",
"lint": "eslint . --cache --fix",
"prettier": "prettier --single-quote --parser flow --write \"**/*.js\" *.js"
},
"node-red": {
"nodes": {
"Entity": "src/nodes/NGSI/entity/entity.js",
"Dataset": "src/nodes/NGSI/dataset/dataset.js",
"Update": "src/nodes/NGSI/update/update.js",
"Subscription": "src/nodes/NGSI/subscription/subscription.js",
"v2ToLD": "src/nodes/NGSI/v2ToLD/v2ToLD.js",
"Context-Broker": "src/nodes/NGSI/contextbroker/contextbroker.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/FIWARE/node-red-contrib-FIWARE_official.git"
},
"dependencies": {
"request": "^2.88.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.1",
"eslint-config-tamia": "^6.0.1",
"eslint-plugin-prettier": "^2.7.0",
"mocha": "^6.0.2",
"node-red": "^0.20.7",
"node-red-node-test-helper": "^0.2.1",
"prettier": "^1.16.4"
},
"keywords": [
"node-red",
"contrib",
"fiware",
"ngsi",
"ngsi-ld",
"etsi",
"context",
"process",
"data",
"json",
"json-ld"
],
"author": "FIWARE Foundation e.V.",
"license": "Apache-2.0",
"engines": {
"node": ">=10.16"
},
"bugs": {
"url": "https://github.com/FIWARE/node-red-contrib-FIWARE_official/issues"
},
"homepage": "https://github.com/FIWARE/node-red-contrib-FIWARE_official#readme"
}