forked from webofthings/webofthings.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.56 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": "webofthings",
"version": "0.1.0",
"description": "A Node.js Web of Things server and gateway for Linux based devices such as the Raspberry Pi, Beaglebone, Edison or Samsung Artik",
"main": "wot.js",
"scripts": {
"start": "node wot.js",
"test": "mocha"
},
"author": "Dominique Guinard, @domguinard",
"contributors": [
{
"name": "Vlad Trifa",
"email": "[email protected]"
},
{
"name": "Dominique Guinard",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/webofthings/webofthings.js"
},
"license": "Apache-2.0",
"keywords": [
"web of things",
"internet of things",
"wot",
"gateway",
"building the web of things",
"REST",
"HTTP",
"mqtt",
"pi",
"raspberry",
"pizero",
"coap",
"m2m",
"iot",
"tcp",
"websockets",
"beaglebone",
"messaging",
"jsondld",
"messagepack"
],
"dependencies": {
"bl": "^1.0.0",
"body-parser": "^1.13.1",
"consolidate": "^0.13.1",
"cors": "^2.7.1",
"crypto": "0.0.3",
"express": "^4.13.3",
"handlebars": "^3.0.3",
"lodash": "^3.10.0",
"msgpack5": "^3.3.0",
"node-json2html": "^1.0.0",
"node-uuid": "^1.4.3",
"uuid": "^3.0.0",
"ws": "^1.0.1"
},
"optionalDependencies": {
},
"devDependencies": {
"assert": "^1.3.0",
"chai": "^2.3.0",
"http-status": "^0.1.8",
"mocha": "^2.2.5",
"request": "^2.55.0",
"websocket": "^1.0.22"
},
"engines": {
"node": ">=0.12.3 <5.0.0"
}
}