-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "zwave-card-set",
"version": "0.14.0",
"author": "Patrick Masters",
"license": "ISC",
"description": "Custom cards for Home Assistant which relate to Z-Wave Devices.",
"source": "src/index.ts",
"module": "dist/zwave-card-set.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 npm run 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.16.4",
"@testing-library/dom": "^10.4.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/chai": "^5.2.3",
"@types/jsdom": "^28.0.1",
"@types/mocha": "^10.0.10",
"@types/sinon": "^21.0.1",
"chai": "^6.2.2",
"jsdom": "^29.0.2",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"parcel": "^2.16.4",
"prettier": "3.8.2",
"prettier-plugin-organize-imports": "^4.3.0",
"proxyquire": "^2.1.3",
"sinon": "^21.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@lit/task": "^1.0.3",
"debounce": "^3.0.0",
"fast-deep-equal": "^3.1.3",
"lit": "^3.3.2"
}
}