-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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": "beebotte",
"description": "Beebotte is an open cloud platform for real time connected objects. This package provides the implementation of Beebotte API in nodejs.",
"version": "1.7.0",
"author": {
"name": "Bachar Wehbi",
"email": "bwehbi@beebotte.com"
},
"homepage": "https://github.com/beebotte/bbt_node",
"repository": {
"type": "git",
"url": "https://github.com/beebotte/bbt_node.git"
},
"scripts": {
"test": "mocha --recursive --bail --reporter spec test 2>&1",
"ci": "mocha --recursive --bail --watch test",
"jshint-lib": "jshint lib",
"jshint-test": "jshint test"
},
"main": "./index.js",
"engines": {
"node": ">=0.10.40",
"npm": ">=2.0.0"
},
"keywords": [
"api",
"rest",
"pubsub",
"restful",
"iot",
"internet of things",
"devices",
"cloud",
"realtime",
"connected",
"mqtt",
"socketio"
],
"dependencies": {
"extend": "3.0.2",
"request": "2.88.0",
"socket.io-client": "2.3.0",
"@hapi/joi": "16.1.8",
"mqtt": "2.18.8"
},
"devDependencies": {
"chai": "4.2.0",
"jshint": "2.10.3",
"mocha": "6.2.2"
},
"license": "MIT"
}