-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 769 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 769 Bytes
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
{
"name": "ha-visualiser",
"version": "0.6.2",
"description": "Home Assistant Entity Visualiser Integration",
"scripts": {
"lint": "npm run lint:python && npm run lint:js",
"lint:python": "python3 -m pylint custom_components/ha_visualiser/*.py --rcfile=.pylintrc",
"lint:js": "eslint custom_components/ha_visualiser/www/*.js",
"lint:fix": "eslint custom_components/ha_visualiser/www/*.js --fix",
"test": "python3 tests/run_tests.py"
},
"devDependencies": {
"eslint": "^8.57.0"
},
"keywords": [
"home-assistant",
"visualization",
"entity-graph",
"relationships"
],
"author": "jonducrou",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonducrou/ha_visualiser.git"
}
}