This repository has been archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
63
64
65
66
67
{
"name": "homebridge-homewizard",
"version": "0.1.0",
"description": "Plugin for Homebridge to communicate with HomeWizard",
"author": "Raymond de Wit",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/rthewhite/homebridge-homewizard.git"
},
"bugs": {
"url": "https://github.com/rthewhite/homebridge-homewizard/issues",
"email": "[email protected]"
},
"main": "dist/plugin.js",
"keywords": [
"homebridge-plugin",
"homewizard",
"klikaanklikuit",
"domotica"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.5.9",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-rewire": "^1.0.0-beta-2",
"babel-plugin-transform-class-properties": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.3.16",
"babel-plugin-transform-export-extensions": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-coveralls": "^1.0.0",
"grunt-eslint": "^17.3.1",
"grunt-mocha-test": "^0.12.7",
"grunt-release": "^0.13.0",
"mocha": "^2.3.4",
"rewire": "^2.5.1",
"should": "^8.0.1",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"q": "^1.4.1",
"request-promise": "^1.0.2"
},
"scripts": {
"prepublish": "grunt build",
"test": "./node_modules/.bin/babel-node ./node_modules/.bin/babel-istanbul cover ./node_modules/.bin/_mocha --recursive"
}
}