-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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
{
"name": "lovelace-gazpar-card",
"version": "1.3.11",
"compatibleIntegrationVersion": "1.3.4",
"compatibleGazpar2MQTTVersion": "0.1.0",
"description": "GrDF Gazpar meter lovelace card for Home Assistant.",
"main": "index.js",
"type": "module",
"private": true,
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build-dev": "webpack --mode=development",
"build-prd": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssenart/lovelace-gazpar-card.git"
},
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"Gazpar",
"GrDF",
"Gas",
"Meter",
"Consumption-data"
],
"author": "Senart Stephane",
"license": "MIT",
"bugs": {
"url": "https://github.com/ssenart/lovelace-gazpar-card/issues"
},
"homepage": "https://github.com/ssenart/lovelace-gazpar-card#readme",
"dependencies": {
"chart.js": "^3.9.1",
"lit": "^2.4.1"
},
"devDependencies": {
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {},
"moduleNameMapper": {
"\\.(png|svg|jpg|jpeg|gif)$": "<rootDir>/tests/fileMock.js"
}
}
}