-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.14 KB
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
73
{
"name": "ohm-assistant",
"version": "0.6.0",
"description": "A modern Home Assistant card for displaying energy usage",
"repository": {
"type": "git",
"url": "https://github.com/homeassistant-extras/ohm-assistant.git"
},
"bugs": {
"url": "https://github.com/homeassistant-extras/ohm-assistant/issues"
},
"source": "src/index.ts",
"module": "dist/ohm-assistant.js",
"author": {
"name": "Patrick Masters",
"url": "https://curiouscat.consulting/projects/ha-ohm-assistant?utm_source=github-ohm-assistant&utm_medium=package-metadata&utm_campaign=oss-presence&utm_content=author-url"
},
"license": "MIT",
"keywords": [
"home-assistant",
"custom-card",
"electricity",
"energy",
"power"
],
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"format": "prettier --write .",
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"test:coverage": "nyc npm run test",
"test:watch": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --watch",
"update": "npx npm-check-updates -u && yarn install"
},
"targets": {
"module": {
"includeNodeModules": true
}
},
"dependencies": {
"@lit/task": "^1.0.3",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^4.3.0",
"fast-deep-equal": "^3.1.3",
"lit": "^3.3.3",
"memoize-one": "^6.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@open-wc/testing-helpers": "^3.0.1",
"@parcel/config-default": "^2.16.4",
"@parcel/packager-ts": "^2.16.4",
"@parcel/transformer-typescript-tsc": "^2.16.4",
"@parcel/transformer-typescript-types": "^2.16.4",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^25.9.1",
"@types/sinon": "^21.0.1",
"chai": "^6.2.2",
"jsdom": "^29.1.1",
"mocha": "^11.7.6",
"nyc": "^18.0.0",
"parcel": "^2.16.4",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"sinon": "^21.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.3"
}
}