forked from coapjs/node-coap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1009 Bytes
/
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
{
"name": "coap",
"version": "0.19.0",
"description": "A CoAP library for node modelled after 'http'",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --bail --reporter spec 2>&1",
"testnobail": "./node_modules/.bin/mocha --reporter spec 2>&1"
},
"repository": {
"type": "git",
"url": "https://github.com/mcollina/node-coap.git"
},
"pre-commit": [
"test"
],
"keywords": [
"coap",
"m2m",
"iot",
"client",
"server",
"udp",
"observe",
"internet of things",
"messaging"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"devDependencies": {
"pre-commit": "1.1.3",
"chai": "^3.4.1",
"mocha": "^3.2.0",
"timekeeper": "^1.0.0",
"sinon": "~1.7.3"
},
"dependencies": {
"bl": "^1.0.0",
"capitalize": "^1.0.0",
"coap-packet": "^0.1.12",
"debug": "^2.2.0",
"fastseries": "^1.7.0",
"lru-cache": "^4.0.0",
"readable-stream": "^2.2.2"
}
}