-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.69 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "iobroker.upnp",
"version": "1.1.0",
"description": "UPnP is looking for UPnP devices on Local Network",
"author": {
"name": "Jey Cee",
"email": "[email protected]"
},
"homepage": "https://github.com/Jey-Cee/ioBroker.upnp",
"license": "MIT",
"keywords": [
"ioBroker",
"upnp",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Jey-Cee/ioBroker.upnp"
},
"engines": {
"node": ">= 18"
},
"dependencies": {
"@iobroker/adapter-core": "^3.2.1",
"ip": "^2.0.1",
"node-schedule": "^2.1.1",
"node-ssdp": "^4.0.1",
"parsexmlresponse": "^0.0.5",
"portfinder": "^1.0.32",
"request": "^2.88.2",
"xml2js": "^0.6.2",
"xmldom": "^0.6.0"
},
"devDependencies": {
"axios": "^1.7.7",
"mocha": "^11.0.1",
"chai": "^5.1.1",
"@iobroker/testing": "^5.0.0",
"@iobroker/adapter-dev": "^1.3.0",
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
"@alcalzone/release-script-plugin-license": "^3.7.0"
},
"bugs": {
"url": "https://github.com/Jey-Cee/ioBroker.upnp/issues"
},
"readmeFilename": "README.md",
"main": "main.js",
"files": [
"admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
"admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}",
"lib/",
"www/",
"io-package.json",
"LICENSE",
"main.js"
],
"scripts": {
"test": "npm run test:package && npm run test:unit",
"test:package": "mocha test/package --exit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit",
"release": "release-script"
}
}