-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "iobroker.viessmannapi",
"version": "1.3.3",
"description": "viessmannapi",
"author": {
"name": "Thomas Vidic",
"email": "[email protected]"
},
"contributors": [
{
"name": "Thomas Vidic",
"email": "[email protected]"
}
],
"homepage": "https://github.com/thovid/ioBroker.viessmannapi",
"license": "MIT",
"keywords": [
"ioBroker",
"viessmannapi",
"Smart Home",
"home automation"
],
"repository": {
"type": "git",
"url": "https://github.com/thovid/ioBroker.viessmannapi"
},
"dependencies": {
"@iobroker/adapter-core": "^1.0.3",
"typescript": "^3.8.3",
"viessmann-api-client": "^2.2.1"
},
"devDependencies": {
"@iobroker/testing": "^1.3.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.5",
"@types/node": "^10.17.17",
"chai": "^4.1.2",
"cpx": "^1.5.0",
"gulp": "^3.9.1",
"mocha": "^4.1.0",
"rimraf": "^2.6.3",
"ts-node": "^7.0.1"
},
"main": "dist/main.js",
"scripts": {
"clean-build-dir": "cpx dist/src/**/*.* dist && rimraf dist/src && rimraf dist/{io-,}package.json",
"prebuild": "rimraf ./dist",
"build:ts": "tsc -p src/tsconfig.json",
"postbuild:ts": "npm run clean-build-dir",
"build": "npm run build:ts",
"test:js": "node node_modules/mocha/bin/mocha test/test*.js",
"test:ts": "node node_modules/mocha/bin/mocha --require ts-node/register --require source-map-support/register test/**/*.test.ts",
"test:package": "mocha test/package --exit",
"test": "npm run test:package && npm run test:unit",
"test:unit": "mocha test/unit --exit",
"test:integration": "mocha test/integration --exit"
},
"bugs": {
"url": "https://github.com/thovid/ioBroker.viessmannapi/issues"
},
"readmeFilename": "README.md"
}