-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
executable file
·57 lines (57 loc) · 1.66 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
{
"name": "spotify-card",
"author": "Niklas Fondberg <[email protected]>, Max Fermor (FL550) <[email protected]>",
"version": "2.3.6",
"description": "Spotify playlist card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"spotify",
"playlist"
],
"module": "spotify-card.js",
"repository": "[email protected]:custom-cards/spotify-card.git",
"license": "Apache-2.0",
"dependencies": {
"custom-card-helpers": "^1.6.4",
"home-assistant-js-websocket": "^5.6.0",
"lit-element": "^2.3.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"rollup": "^2.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.2.0",
"ts-lit-plugin": "^1.2.1",
"typescript": "^3.9.7"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup",
"release": "npm run lint && npm run test && npm run rollup",
"lint": "eslint src/*.ts --fix",
"test": "jest",
"coverage": "jest --coverage",
"rollup": "rollup -c -m"
},
"jest": {
"preset": "ts-jest"
}
}