-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "ngsi-proxy",
"version": "1.2.2",
"description": "Receive push notifications on web pages from FIWARE NGSI context brokers",
"repository": {
"type": "git",
"url": "https://github.com/conwetlab/ngsi-proxy.git"
},
"keywords": [
"context broker",
"fiware",
"FIWARE",
"fiware-orion",
"iot",
"IoT",
"NGSI",
"orion",
"wirecloud"
],
"author": "CoNWeT Lab., Universidad Politecnica de Madrid",
"license": "AGPLv3 with linking exception",
"engines": {
"node": ">= 0.10.11"
},
"bugs": {
"url": "https://github.com/conwetlab/ngsi-proxy/issues"
},
"homepage": "https://github.com/conwetlab/ngsi-proxy",
"dependencies": {
"compression": "^1.7.2",
"errorhandler": "^1.5.0",
"express": "4.16.3",
"morgan": "^1.9.1",
"uuid": "^3.0.1"
},
"bin": {
"ngsi-proxy": "app.js"
},
"devDependencies": {
"coveralls": "^3.0.4",
"eventsource": "^1.0.5",
"istanbul": "^0.4.5",
"jasmine": "^3.1.0",
"request": "^2.88.0"
},
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js cover -- ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json"
}
}