-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.75 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
71
72
{
"name": "viessmann-api-client",
"version": "2.2.1",
"description": "a node js api client for the viessmann heating api",
"keywords": [
"nodejs",
"viessmann",
"smarthome",
"heating"
],
"author": "Thomas Vidic",
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/thovid/node-viessmann-api-client.git"
},
"bugs": {
"url": "https://github.com/thovid/node-viessmann-api-client/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {
"big.js": "^5.2.2",
"request": "^2.88.0",
"simple-oauth2": "^2.5.0",
"request-promise-native": "^1.0.5",
"typescript-optional": "^1.8.0"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-subset": "^1.3.1",
"@types/debug": "0.0.31",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"@types/request": "^2.48.1",
"@types/request-promise-native": "^1.0.15",
"@types/simple-oauth2": "^2.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"nyc": "^13.1.0",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"scripts": {
"build": "tsc",
"test": "nyc mocha \"test/**/*.spec.ts\"",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint:ts": "tslint",
"lint": "npm run lint:ts \"src/**/*.ts\" \"test/**/*.ts\""
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"all": true
}
}