-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "device-card",
"version": "0.19.0",
"author": "Patrick Masters",
"license": "ISC",
"description": "Custom Home Assistant card to show info about your devices.",
"source": "src/index.ts",
"module": "dist/device-card.js",
"targets": {
"module": {
"includeNodeModules": true
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"format": "prettier --write .",
"test": "TS_NODE_PROJECT='./tsconfig.test.json' mocha",
"test:coverage": "nyc yarn test",
"test:watch": "TS_NODE_PROJECT='./tsconfig.test.json' mocha --watch",
"update": "npx npm-check-updates -u && yarn install"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@open-wc/testing": "^4.0.0",
"@parcel/transformer-inline-string": "^2.15.4",
"@testing-library/dom": "^10.4.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/chai": "^5.2.2",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.4",
"chai": "^5.2.1",
"jsdom": "^26.1.0",
"mocha": "^11.7.1",
"nyc": "^17.1.0",
"parcel": "^2.15.4",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"proxyquire": "^2.1.3",
"sinon": "^21.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@lit/task": "^1.0.3",
"fast-deep-equal": "^3.1.3",
"lit": "^3.3.1"
}
}