forked from nooblucker/hueSimulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
{
"name": "hue-bridge-simulator",
"description": "Simulate a philips hue bridge light system",
"keywords": [
"hue",
"bridge",
"simulator",
"philips"
],
"license": "MIT",
"authors": [
"Sven Riecker <[email protected]>",
"Netbeast Engineering <[email protected]>"
],
"version": "0.0.15",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cron": "^1.3.0",
"express": "^4.16.2",
"ip": "^1.1.5",
"minimist": "^1.2.0",
"morgan": "^1.9.0",
"request": "^2.83.0"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"prettier": "^1.10.2",
"prettier-eslint": "^8.7.5",
"prettier-eslint-cli": "^4.4.0"
},
"main": "src/bridge.js",
"scripts": {
"start": "node ./bin/hue-bridge-simulator",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "node_modules/.bin/eslint src",
"prettier": "node_modules/.bin/prettier --write \"src/**/*.js\"",
"prettier-eslint": "node_modules/.bin/prettier-eslint --write \"src/**/*.js\""
},
"lint-staged": {
"*.js": [
"node_modules/.bin/prettier-eslint --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/netbeast/hue-bridge-simulator"
},
"bugs": "https://github.com/netbeast/hue-bridge-simulator/issues",
"bin": {
"hue-bridge-simulator": "./bin/hue-bridge-simulator"
}
}