-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 1013 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
{
"name": "h5.coap",
"version": "0.0.0",
"description": "Implementation of the Constrained Application Protocol (CoAP) client for node.js.",
"keywords": ["h5", "coap", "protocol"],
"license": "MIT",
"homepage": "https://github.com/morkai/h5.coap",
"author": {
"name": "Łukasz Walukiewicz",
"email": "[email protected]",
"url": "http://lukasz.walukiewicz.eu/"
},
"bugs": "https://github.com/morkai/h5.coap/issues",
"repository": {
"type": "git",
"url": "https://github.com/morkai/h5.coap.git"
},
"engine": ["node ~0.10.10"],
"main": "./lib/index",
"dependencies": {
"h5.buffers": "~0.1.1"
},
"devDependencies": {
"deep-equal": "~0.0.0",
"should": "~1.2.2",
"sinon": "~1.7.3",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.7",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-jshint": "~0.4.3",
"grunt-simple-mocha": "~0.4.0",
"grunt-istanbul": "~0.2.1",
"grunt-env": "~0.4.0"
},
"scripts": {
"test": "grunt"
}
}