-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 3.1 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
{
"name": "node-red-contrib-letsfiware-ngsi",
"version": "0.17.1",
"description": "Node-RED implementation for FIWARE Open APIs",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js --ext .json,.js src test",
"format": "./node_modules/.bin/prettier --write src test",
"fix": "npm run format && npm run lint",
"test": "./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text ./node_modules/mocha/bin/mocha.js \"test/unit/**/*_spec.js\"",
"e2e": "./node_modules/nyc/bin/nyc.js --reporter=html --reporter=text ./node_modules/mocha/bin/mocha.js \"test/e2e/**/*_spec.js\"",
"coverage": "mkdir -p coverage && ./node_modules/nyc/bin/nyc.js --reporter=text-lcov ./node_modules/mocha/bin/mocha.js \"test/unit/**/*_spec.js\" > ./coverage/coverage.lcov"
},
"node-red": {
"version": ">=1.0.0",
"nodes": {
"NGSI-entity": "src/nodes/NGSI/entity/entity.js",
"NGSI-attributes": "src/nodes/NGSI/attributes/attributes.js",
"NGSI-attribute": "src/nodes/NGSI/attribute/attribute.js",
"NGSI-attribute-value": "src/nodes/NGSI/attribute-value/attribute-value.js",
"NGSI-source": "src/nodes/NGSI/source/source.js",
"NGSI-batch-update": "src/nodes/NGSI/batch-update/batch-update.js",
"NGSI-subscription": "src/nodes/NGSI/subscription/subscription.js",
"NGSI-registration": "src/nodes/NGSI/registration/registration.js",
"NGSI-types": "src/nodes/NGSI/types/types.js",
"NGSI-encode": "src/nodes/NGSI/encode/encode.js",
"NGSI-decode": "src/nodes/NGSI/decode/decode.js",
"FIWARE-Service-and-ServicePath": "src/nodes/NGSI/service-and-servicepath/service-and-servicepath.js",
"NGSI-GTFS-Realtime": "src/nodes/NGSI/gtfs-realtime/gtfs-realtime.js",
"NGSI-to-worldmap": "src/nodes/NGSI/to-worldmap/to-worldmap.js",
"NGSI-to-dashboard": "src/nodes/NGSI/to-dashboard/to-dashboard.js",
"OpenWeatherMap-to-NGSI": "src/nodes/NGSI/openweathermap_to_ngsi/openweathermap_to_ngsi.js",
"FIWARE-version": "src/nodes/NGSI/version/version.js",
"Historical-Context": "src/nodes/NGSI/historical-context/historical-context.js",
"NGSI-timeseries": "src/nodes/NGSI/timeseries/timeseries.js",
"Open-APIs": "src/nodes/NGSI/open-apis/open-apis.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/lets-fiware/node-red-contrib-letsfiware-NGSI.git"
},
"keywords": [
"node-red",
"contrib",
"fiware",
"ngsi",
"context",
"process",
"data",
"json"
],
"author": "Kazuhito Suda",
"license": "MIT",
"bugs": {
"url": "https://github.com/lets-fiware/node-red-contrib-letsfiware-NGSI/issues"
},
"homepage": "https://node-red-contrib-letsfiware-ngsi.letsfiware.jp/",
"dependencies": {
"axios": "^1.5.0",
"gtfs-realtime-bindings": "1.1.1"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"babel-plugin-rewire": "^1.2.0",
"babel-register": "^6.26.0",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3"
},
"engines": {
"node": ">=12"
}
}