-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.13 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
68
69
70
71
72
{
"name": "hass-qubino-flush-pilot-wire-card",
"version": "1.1.0",
"description": "Home assitant qubino flush pilot wire control card",
"main": "index.js",
"private": true,
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "npm run rollup",
"rollup": "rollup -c",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/*.ts --max-warnings=0",
"lint:fix": "eslint src/*.ts --max-warnings=0 --fix",
"bundlewatch": "bundlewatch",
"postinstall": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sylcastaing/hass-qubino-flush-pilot-wire-card.git"
},
"author": "Sylvain Castaing",
"license": "MIT",
"bugs": {
"url": "https://github.com/sylcastaing/hass-qubino-flush-pilot-wire-card/issues"
},
"homepage": "https://github.com/sylcastaing/hass-qubino-flush-pilot-wire-card#readme",
"dependencies": {
"custom-card-helpers": "1.7.0",
"home-assistant-js-websocket": "5.8.1",
"lit-element": "2.4.0",
"lit-html": "1.3.0"
},
"devDependencies": {
"@babel/core": "7.12.17",
"@babel/plugin-proposal-class-properties": "7.12.13",
"@babel/plugin-proposal-decorators": "7.12.13",
"@rollup/plugin-json": "4.1.0",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"bundlewatch": "0.3.2",
"eslint": "7.20.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.0.9",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"rollup": "1.32.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-serve": "1.1.0",
"rollup-plugin-terser": "5.3.1",
"rollup-plugin-typescript2": "0.24.3",
"typescript": "3.9.9"
},
"lint-staged": {
"src/**/*.ts": [
"npm run format",
"npm run lint:fix"
]
},
"bundlewatch": {
"files": [
{
"path": "./dist/qubino-flush-wire-pilot.js",
"maxSize": "50 kB"
}
]
}
}