-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "node-home-assistant",
"version": "0.2.2",
"main": "index.js",
"scripts": {
"dev:watch": "DEBUG=home-assistant* nodemon _scratchpad/scratchpad.js",
"test": "mocha __tests__/*.spec.js",
"test:watch": "DEBUG=home-assistant* mocha --watch --inspect __tests__/**/*.spec.js"
},
"bin": {
"ha": "./cli/ha.js"
},
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"chalk": "^2.3.0",
"chrono-node": "^1.3.5",
"commander": "^2.12.2",
"dateformat": "^3.0.2",
"debounce": "^1.1.0",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"eventsource": "^1.0.5",
"merge": "^1.2.0",
"object-merge": "^2.5.1",
"pino": "^4.10.2",
"timeago.js": "^3.0.2",
"tty-table": "^2.5.5"
},
"devDependencies": {
"eslint": "^4.12.1",
"mocha": "^4.0.1",
"nock": "^9.1.4",
"nodemon": "^1.12.1",
"should": "^13.1.3",
"simple-mock": "^0.8.0",
"table": "^4.0.2"
}
}