-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
50 lines (50 loc) · 1.52 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
{
"name": "ha-climacell-weather",
"version": "2.0.5",
"description": "The Home Assistant custom component retrieve weather information using the climacell API. (https://www.climacell.co).",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"weather",
"climacell"
],
"homepage": "https://gitlab.com/rrenato/ha-climacell-weather#readme",
"module": "climacell_custom",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/r-renato/ha-climacell-weather.git"
},
"author": "Renato Rossi",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^1.4.2",
"@typescript-eslint/parser": "^1.4.1",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"prettier": "^1.16.4",
"rollup": "^1.2.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-uglify": "^6.0.2",
"rollup-plugin-execute": "^1.1.1",
"typescript": "^3.3.3333"
},
"bugs": {
"url": "https://gitlab.com/rrenato/ha-climacell-weather/issues"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c --no-compact "
}
}