-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
83 lines (83 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "simple-thermostat",
"version": "2.2.2",
"description": "A different take on the thermostat card for Home Assistant Lovelace UI",
"main": "dist/simple-thermostat.js",
"repository": "[email protected]:nervetattoo/simple-thermostat.git",
"author": "Raymond Julin <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src"
],
"dependencies": {
"debounce-fn": "^5.0.0",
"lit-element": "^2.4.0",
"squirrelly": "^8.0.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.1.0",
"@size-limit/file": "^4.10.1",
"@size-limit/time": "^4.10.2",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-electron": "^0.1.11",
"jest-environment-jsdom-sixteen": "^1.0.3",
"postcss": "^8.2.8",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rollup": "^2.32.0",
"rollup-plugin-dts": "^3.0.1",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-minify-html-literals": "^1.2.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-postcss-lit": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^17.4.2",
"size-limit": "^4.10.1",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"scripts": {
"test": "jest",
"build": "cross-env NODE_ENV=production rollup -c",
"postversion": "npm run build",
"dev": "concurrently 'npm:dev:*'",
"dev:build": "tsc --watch",
"dev:test": "jest --watchAll",
"size-build": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/simple-thermostat.js",
"limit": "20 KB"
}
]
}