-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "flipclock-card",
"version": "0.0.1",
"description": "Lovelace flipclock-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"main": "src/main.js",
"module": "src/main.js",
"repository": "https://github.com/schmallaria/flipclock-card.git",
"author": "schmallaria",
"license": "MIT",
"dependencies": {
"custom-card-helpers": "^1.5.0",
"flipclock": "github:schmallaria/FlipClock#js-es6",
"lit-element": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/lodash": "^4.14.150",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"rollup": "^2.7.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-uglify": "^6.0.4",
"typescript": "^3.8.3"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup",
"release-patch": "npm version patch --no-git-tag-version && npm run release",
"release-minor": "npm version minor --no-git-tag-version && npm run release",
"release-major": "npm version major --no-git-tag-version && npm run release",
"release": "npm run build",
"commit": "git add -A && git commit -m %npm_package_version%",
"lint": "eslint src/*.ts",
"rollup": "rollup -c",
"pretty": "prettier --write \"./**/*.{js,ts}\""
}
}