This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.7 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
{
"name": "lovelace-postnl",
"version": "0.12.0",
"description": "Lovelace PostNL card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"postnl"
],
"module": "src/main.js",
"repository": "[email protected]:peternijssen/lovelace-postnl.git",
"author": "Peter Nijssen <[email protected]>",
"license": "MIT",
"dependencies": {
"lit-element": "^2.1.0",
"lit-html": "^1.0.0",
"moment": "^2.24.0",
"swiper": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.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-helper-evaluate-path": "^0.5.0",
"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-plugin-import": "2.16.0",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-uglify": "^6.0.2"
},
"scripts": {
"build": "npm run lint && npm run rollup && npm run babel",
"rollup": "rollup -c",
"babel": "babel dist/postnl-card.js --out-file dist/postnl-card.js",
"lint": "eslint src/* --ext .js",
"watch": "rollup -c --watch"
}
}