forked from norman-thomas/homebridge-particle-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "homebridge-particle-io",
"version": "0.0.12",
"description": "Particle plugin for homebridge: https://github.com/nfarina/homebridge",
"license": "ISC",
"keywords": [
"homebridge-plugin",
"homebridge",
"particle",
"particle photon",
"particle electron"
],
"repository": {
"type": "git",
"url": "git+https://github.com/norman-thomas/homebridge-particle-io.git"
},
"bugs": {
"url": "https://github.com/norman-thomas/homebridge-particle-io/issues"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint src/ test/",
"jshint": "jshint src/",
"check": "npm run lint && npm run jshint",
"test": "nyc --reporter=html --reporter=text mocha --exit test/",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"engines": {
"node": ">=4.3.2",
"homebridge": ">=0.4.0"
},
"dependencies": {
"eventsource": "",
"request": "^2.85.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^6.2.0",
"hap-nodejs": "^0.4.21",
"jshint": "^2.9.4",
"mocha": "^6.0.1",
"nyc": "^13.1.0",
"should": "^13.2.3",
"sinon": "^4.5.0",
"sinon-chai": "^2.8.0"
}
}