forked from telefonicaid/iotagent-node-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "iotagent-node-lib",
"description": "IoT Agent library to interface with NGSI Context Broker",
"version": "2.8.0-next",
"homepage": "https://github.com/telefonicaid/iotagent-node-lib",
"keywords": [
"fiware",
"iotagent",
"ngsi",
"context broker"
],
"author": {
"name": "Daniel Moran",
"email": "daniel.moranjimenez@telefonica.com"
},
"repository": {
"type": "git",
"url": "git://github.com/telefonicaid/iotagent-node-lib.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/iotagent-node-lib/issues"
},
"bin": {
"agentConsole": "bin/agentConsole.js",
"iotAgentTester": "bin/iotAgentTester.js"
},
"main": "lib/fiware-iotagent-lib",
"engines": {
"node": ">=4.8.4"
},
"scripts": {
"clean": "rm -rf package-lock.json && rm -rf node_modules && rm -rf coverage",
"test": "mocha --recursive 'test/**/*.js' --reporter spec --timeout 3000 --ui bdd --exit",
"test:watch": "npm run test -- -w ./lib",
"lint": "jshint lib/ --config .jshintrc && jshint test/ --config test/.jshintrc",
"test:coverage": "istanbul cover _mocha -- --recursive 'test/**/*.js' --reporter spec --exit",
"watch": "watch 'npm test && npm run lint' ./lib ./test"
},
"dependencies": {
"async": "2.6.1",
"body-parser": "~1.18.3",
"command-shell-lib": "1.0.0",
"express": "~4.16.4",
"jison": "0.4.18",
"logops": "1.0.8",
"moment": "~2.22.2",
"moment-timezone": "~0.5.21",
"mongodb": "3.1.8",
"mongoose": "5.3.6",
"mu2": "~0.5.20",
"node-uuid": "~1.4.1",
"query-string": "6.2.0",
"request": "2.88.0",
"revalidator": "~0.3.1",
"underscore": "~1.9.1"
},
"devDependencies": {
"istanbul": "~0.4.5",
"jshint": "~2.9.6",
"mocha": "5.2.0",
"nock": "10.0.1",
"should": "13.2.3",
"timekeeper": "2.1.2",
"watch": "~1.0.2"
}
}