forked from totaldebug/atomic-calendar-revive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.46 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
{
"name": "atomic-calendar-revive",
"version": "5.1.0",
"editor_version": "1.7.0",
"description": "Calendar Card for Home Assistant",
"main": "atomic-calendar-revive.js",
"scripts": {
"lint": "eslint src/*.ts | more ",
"lintindex": "eslint src/index.ts | more",
"lintindexfix": "eslint src/index.ts --fix",
"lintfixall": "eslint src/*.ts --fix",
"linteditor": "eslint src/index-editor.ts",
"babel": "babel dist/index.js --out-file dist/atomic-calendar-revive.js",
"rollup": "rollup -c",
"start": "rollup -c --watch",
"build": "rollup -c ",
"watch": "rollup -c --watch --config rollup-dev.config.js",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marksie1988/atomic-calendar-revive.git"
},
"author": "Steven Marks",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.15.8",
"@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.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-preset-minify": "^0.5.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0"
},
"dependencies": {
"@formatjs/icu-messageformat-parser": "^2.0.12",
"@material/mwc-icon-button": "^0.25.1",
"@material/mwc-linear-progress": "^0.25.1",
"@polymer/lit-element": "^0.7.1",
"@webcomponents/webcomponentsjs": "^2.6.0",
"custom-card-helpers": "git+https://github.com/totaldebug/custom-card-helpers.git",
"dayjs": "^1.10.7",
"lit": "^2.0.2",
"node-google-calendar": "^1.1.1",
"npm": "^8.0.0",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/marksie1988/atomic-calendar-revive/issues"
},
"homepage": "https://github.com/marksie1988/atomic-calendar-revive#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}