-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
67
68
69
70
{
"name": "tellstick-adapter",
"display_name": "Tellstick",
"version": "1.0.0",
"description": "Telldus Tellstick adapter for WebThings Gateway",
"main": "dist/index.js",
"scripts": {
"build": "tsc --listEmittedFiles",
"lint": "eslint --ext .ts src",
"test": "tsc --noEmit && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/majori/tellstick-adapter.git"
},
"author": "Antti Kivimäki",
"license": "MIT",
"keywords": [
"iot",
"adapter",
"tellstick",
"telldus"
],
"bugs": {
"url": "https://github.com/majori/tellstick-adapter/issues"
},
"homepage": "https://github.com/majori/tellstick-adapter",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/nock": "^11.1.0",
"@types/node": "^8.10.59",
"@types/sinon": "^7.5.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"chai": "^4.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"gateway-addon": "^1.0.0",
"mocha": "^8.2.1",
"nock": "^11.7.0",
"prettier": "^1.18.2",
"sinon": "^7.5.0",
"ts-node": "^9.1.1",
"typescript": "^3.7.2"
},
"dependencies": {
"axios": "^0.21.1"
},
"files": [
"LICENSE",
"README.md",
"SHA256SUMS",
"manifest.json",
"dist/index.js",
"dist/adapter.js",
"dist/constants.js",
"dist/properties/index.js",
"dist/properties/level.js",
"dist/properties/on-off.js",
"dist/devices/index.js",
"dist/devices/dimmer.js",
"dist/devices/switch.js",
"dist/clients/index.js",
"dist/clients/telldus-core.js",
"dist/clients/local-api.js"
]
}