-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
{
"name": "tibber-api",
"version": "5.3.1",
"description": "Node.js module for connecting to Tibber API and extract data from your connected homes, including realtime data from Tibber Pulse.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"precompile": "mkver",
"compile": "tsc",
"prebuild": "mkver",
"build": "tsc",
"test": "jest --runInBand --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"jsdoc": "tsc && ./node_modules/.bin/jsdoc ./lib/src -r -d ./jsdoc",
"prepare": "tsc",
"preversion": "npm test",
"version": "",
"postversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bisand/tibber-api.git"
},
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@jest/test-sequencer": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"jsdoc-to-markdown": "^9.0.5",
"mkver": "^3.0.2",
"nock": "^13.5.6",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"websocket": "^1.0.35"
},
"directories": {
"nodes": "nodes"
},
"keywords": [
"tibber",
"tibber-pulse",
"iot",
"power",
"home-automation",
"smarthome",
"energy"
],
"author": "André Biseth",
"license": "MIT",
"bugs": {
"url": "https://github.com/bisand/tibber-api/issues"
},
"homepage": "https://github.com/bisand/tibber-api#readme"
}