-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "wemo-client",
"version": "0.15.0",
"description": "Client library for interacting with Belkin Wemo devices",
"main": "index.js",
"directories": {
"examples": "./examples"
},
"scripts": {
"test": "c8 mocha",
"test-cov": "istanbul cover _mocha",
"test-e2e": "mocha ./test-e2e",
"lint": "eslint *.js",
"postmerge": "npm install",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git://github.com/jimmywarting/wemo-client.git"
},
"author": "Timon Reinhard",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimmywarting/wemo-client/issues"
},
"homepage": "https://github.com/jimmywarting/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": {
"c8": "^7.11.0",
"eslint": "^3.19.0",
"mitm": "^1.7.2",
"mocha": "^9.2.0",
"must": "^0.13.4"
},
"engines": {
"node": ">=12"
}
}