forked from mattdavis90/node-tado-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "node-tado-client",
"version": "0.3.0",
"description": "A Tado client for nodejs",
"main": "index.js",
"dependencies": {
"axios": "^0.18.0",
"simple-oauth2": "^2.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nock": "^9.4.3",
"nyc": "^12.0.2"
},
"scripts": {
"test": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test-html": "nyc --reporter=html mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattdavis90/node-tado-client.git"
},
"keywords": [
"tado",
"tado-api"
],
"author": "Matt Davis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattdavis90/node-tado-client/issues"
},
"homepage": "https://github.com/mattdavis90/node-tado-client#readme"
}