-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "neeo-driver-dyson",
"version": "0.0.0-development",
"description": "Dyson device driver for NEEO Remote",
"main": "index.js",
"scripts": {
"start": "NEEO_DEVICES_DIRECTORY=\"./lib\" neeo-sdk start",
"debug": "DEBUG=neeo-driver-dyson:* NEEO_DEVICES_DIRECTORY=\"./lib\" neeo-sdk start",
"lint": "./node_modules/.bin/eslint ./lib/**/*.js",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint ./lib/**/*.js --config .eslintrc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickvaler/neeo-driver-dyson.git"
},
"author": "Patrick Valer <hello@patrickvaler.ch>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickvaler/neeo-driver-dyson/issues"
},
"homepage": "https://github.com/patrickvaler/neeo-driver-dyson#readme",
"devDependencies": {
"debug": "^4.0.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^4.1.0",
"husky": "^1.0.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.0",
"semantic-release": "^15.9.8",
"travis-deploy-once": "^5.0.2"
},
"dependencies": {
"bonjour": "^3.5.0",
"mqtt": "^2.18.3",
"neeo-sdk": "^0.51.13",
"read-yaml": "^1.1.0"
},
"neeoSdkOptions": {
"serverName": "neeo-sdk-examples-server",
"serverPort": 6336,
"brainHost": "",
"brainPort": ""
}
}