forked from hirosan18/homebridge-nature-remo-sensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "homebridge-nature-remo-sensor",
"description": "Nature Remo plugin for homebridge: https://github.com/nfarina/homebridge",
"version": "1.4.0",
"author": "Hiroaki Sano <hirosan18>",
"private": true,
"homepage": "https://github.com/hirosan18/homebridge-nature-remo-sensor#readme",
"bugs": {
"url": "https://github.com/hirosan18/homebridge-nature-remo-sensor/issues"
},
"dependencies": {
"cron": "^1.8.2",
"request": "^2.88.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"homebridge": "^1.3.1",
"jest": "^26.6.3",
"nock": "^13.0.8",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=4.3.2",
"homebridge": ">=0.2.0"
},
"keywords": [
"homebridge-plugin",
"Nature Remo",
"Homekit"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hirosan18/homebridge-nature-remo-sensor.git"
},
"scripts": {
"test": "cross-env NODE_ENV=test eslint index.js && jest --coverage",
"clean": "rimraf lib/ & rimraf coverage/",
"watch": "cross-env NODE_ENV=test jest --watch"
},
"jest": {
"verbose": true,
"clearMocks": true,
"resetMocks": true,
"resetModules": true
}
}