forked from tim-hellhake/hue-bridge-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 966 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
{
"name": "hue-bridge-emulator",
"version": "1.0.0",
"description": "Interface with hue compatible devices",
"main": "dist/index.js",
"scripts": {
"start": "tsc -p . && node dist/index.js",
"dev": "node_modules/ts-node-dev/lib/bin.js src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tim-hellhake/hue-bridge-emulator.git"
},
"author": "Tim Hellhake",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/tim-hellhake/hue-bridge-emulator/issues"
},
"homepage": "https://github.com/tim-hellhake/hue-bridge-emulator#readme",
"devDependencies": {
"@types/express": "^4.17.8",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.0.2"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"express": "^4.17.1"
}
}