forked from diversario/node-ssdp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 967 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
{
"name": "node-ssdp",
"description": "A node.js SSDP client and server library.",
"keywords": [
"ssdp",
"multicast",
"media",
"device",
"upnp"
],
"version": "2.2.1",
"author": "Ilya Shaisultanov <ilya.shaisultanov@gmail.com>",
"dependencies": {
"ip": "^0.3.2"
},
"optionalDependencies": {
"bunyan-prettystream": "~0.1.3",
"bunyan": "~1.3.5"
},
"repository": {
"type": "git",
"url": "git@github.com:diversario/node-ssdp.git"
},
"bugs": {
"url": "https://github.com/diversario/node-ssdp/issues"
},
"main": "./index",
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "~2.11.2",
"istanbul": "~0.3.13",
"mocha": "~2.2.4",
"mocha-istanbul": "~0.2.0",
"sinon": "~1.14.1"
},
"scripts": {
"test": "make coveralls",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- test/lib --recursive"
}
}