forked from telefonicaid/iotagent-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "iotagent-json",
"description": "IoT Agent for the JSON protocol",
"version": "1.9.0-next",
"homepage": "https://github.com/telefonicaid/iotagent-json",
"author": {
"name": "Daniel Moran",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/telefonicaid/iotagent-json.git"
},
"bugs": {
"url": "https://github.com/telefonicaid/iotagent-json/issues"
},
"main": "lib/iotagent-json",
"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"
},
"devDependencies": {
"nock": "10.0.1",
"mocha": "5.2.0",
"should": "13.2.3",
"istanbul": "~0.4.5",
"proxyquire": "2.1.0",
"moment": "~2.22.2",
"watch": "~1.0.2",
"jshint": "~2.9.6"
},
"keywords": [],
"dependencies": {
"express": "~4.16.4",
"amqplib": "~0.5.1",
"async": "2.6.1",
"body-parser": "1.18.3",
"dateformat": "3.0.3",
"iotagent-node-lib": "git://github.com/telefonicaid/iotagent-node-lib.git#master",
"logops": "1.0.8",
"mqtt": "2.18.8",
"request": "2.88.0",
"underscore": "1.9.1"
}
}