-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.68 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
{
"name": "text-action-element",
"version": "v0.1.0",
"description": "A simple clickable text element for Home Assistant picture elements card. For use with custom fonts.",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"media",
"custom-cards",
"picture-elements"
],
"main": "src/text-action-element.js",
"module": "src/text-action-element.js",
"repository": "[email protected]:yosilevy/text-action-element.git",
"author": "Yosi Levy <[email protected]>",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-transform-template-literals": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-plugin-iife-wrap": "^1.1.0",
"babel-preset-minify": "^0.5.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4",
"rollup": "^0.68.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-typescript2": "^0.19.3",
"typescript": "^3.3.3333"
},
"scripts": {
"build": "npm run lint && npm run rollup && npm run babel",
"rollup": "rollup -c",
"babel": "babel dist/text-action-element-bundle.js --out-file dist/text-action-element-bundle.js",
"lint": "./node_modules/.bin/eslint src/* --ext .js",
"watch": "rollup -c --watch"
}
}