forked from klutchell/hue-bridge-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "hue-bridge-backup",
"version": "0.2.0",
"description": "Backup and restore Philips Hue bridge configuration in raw JSON",
"main": "index.js",
"dependencies": {
"request": "^2.87.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-json": "^1.0.0",
"coveralls": "^3.0.1",
"del": "^3.0.0",
"hue-simulator": "0.0.11",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"stream-splitter": "^0.3.2"
},
"scripts": {
"backup": "node index.js backup",
"restore": "node index.js restore",
"test": "nyc mocha --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klutchell/hue-bridge-backup.git"
},
"keywords": [
"signify",
"smarthome",
"hue",
"backup",
"restore",
"philips"
],
"author": "Kyle Harding <[email protected]> (https://github.com/klutchell)",
"license": "MIT",
"bugs": {
"url": "https://github.com/klutchell/hue-bridge-backup/issues"
},
"homepage": "https://github.com/klutchell/hue-bridge-backup#readme"
}