-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "bfmb-tado-connector",
"version": "0.4.1",
"description": "Connector to Tado smart thermostats api for BFMBFramework",
"main": "./dist/connector.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"clean": "rm -rf ./dist",
"build": "gulp",
"rebuild": "npm run clean && npm run build",
"gendocs": "typedoc --out ./docs ./src; touch ./docs/.nojekyll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BFMBFramework/TadoConnector.git"
},
"keywords": [
"comcenter",
"connector",
"tado"
],
"author": "Ángel González",
"license": "MIT",
"bugs": {
"url": "https://github.com/BFMBFramework/TadoConnector/issues"
},
"homepage": "https://github.com/BFMBFramework/TadoConnector#readme",
"dependencies": {
"bfmb-base-connector": "~0.3.0",
"node-tado-client": "^0.1.1"
},
"peerDependencies": {
"bfmb-comcenter": "~0.5.0"
},
"devDependencies": {
"gulp": "^4.0.0",
"gulp-typescript": "^5.0.1",
"mocha": "^6.1.4",
"typescript": "^3.3.3333"
}
}