-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "node-ssdp",
"description": "A node.js SSDP client and server library.",
"keywords": [
"ssdp",
"multicast",
"media",
"device",
"upnp",
"chromecast",
"iot"
],
"version": "4.0.1",
"author": "Ilya Shaisultanov <[email protected]>",
"dependencies": {
"async": "^2.6.0",
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"extend": "^3.0.1",
"ip": "^1.1.5"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/diversario/node-ssdp.git"
},
"bugs": {
"url": "https://github.com/diversario/node-ssdp/issues"
},
"main": "./index",
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"mocha-istanbul": "^0.3.0",
"sinon": "^4.5.0"
},
"scripts": {
"test": "mocha --exit --recursive test",
"coverage": "istanbul cover node_modules/.bin/_mocha -- test/lib --recursive"
},
"homepage": "https://github.com/diversario/node-ssdp#readme",
"directories": {
"example": "example",
"test": "test"
},
"license": "MIT"
}