This repository was archived by the owner on Jul 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"name": "person-entity-card",
"version": "0.7.6",
"descrition": "Person is a plugin which allows users to add Person entity in order to show the location with a beutiful integration.",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"lovelace",
"custom-cards"
],
"main": "src/main.js",
"module": "src/main.js",
"repository": "[email protected]:gerardag/person-entity-card.git",
"author": "Gerard Albanell <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.8",
"@babel/plugin-transform-template-literals": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"babel-loader": "^8.2.2",
"babel-plugin-iife-wrap": "^1.1.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.2",
"standard-version": "^9.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0"
},
"scripts": {
"prepare": "husky install",
"build": "npm run lint && npm run webpack && npm run babel",
"webpack": "webpack --mode=production",
"babel": "babel dist/person-entity-card-bundle.js --out-file dist/person-entity-card-bundle.js",
"lint": "eslint src/* --ext .js",
"watch": "webpack --watch",
"dev": "webpack --watch"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}