-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "ember-mug-card",
"version": "1.0.0",
"type": "module",
"description": "A custom card for visualizing and controlling Ember Mug devices in Home Assistant",
"main": "ember-mug-card.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flight-lab/ember-mug-card.git"
},
"keywords": [
"home-assistant",
"homeassistant",
"lovelace",
"ember-mug",
"custom-card"
],
"author": "Flab",
"license": "MIT",
"bugs": {
"url": "https://github.com/flight-lab/ember-mug-card/issues"
},
"homepage": "https://github.com/flight-lab/ember-mug-card#readme",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.55.0",
"rollup": "^4.6.1",
"rollup-plugin-serve": "^2.0.2"
}
}