forked from jimmywarting/wemo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.2 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
{
"name": "wemo-client",
"version": "0.15.0",
"description": "Client library for interacting with Belkin Wemo devices",
"main": "index.js",
"directories": {
"examples": "./examples"
},
"scripts": {
"test": "istanbul test _mocha",
"test-cov": "istanbul cover _mocha",
"test-e2e": "mocha ./test-e2e",
"lint": "eslint *.js",
"prepush": "npm run lint && npm test",
"postmerge": "npm install",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/timonreinhard/wemo-client.git"
},
"author": "Timon Reinhard",
"license": "MIT",
"bugs": {
"url": "https://github.com/timonreinhard/wemo-client/issues"
},
"homepage": "https://github.com/timonreinhard/wemo-client",
"keywords": [
"wemo"
],
"dependencies": {
"debug": "^2.6.9",
"entities": "^1.1.1",
"ip": "^1.1.5",
"node-ssdp": "^3.3.0",
"xml2js": "^0.4.19",
"xmlbuilder": "^8.2.2"
},
"devDependencies": {
"eslint": "^3.19.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"mitm": "^1.3.3",
"mocha": "^3.5.3",
"must": "^0.13.4"
},
"engines": {
"node": ">=6"
}
}