-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.31 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "smartthings-phone-presence-sensor",
"version": "1.1.4",
"description": "Presence detection by reading leases on DHCP server",
"main": "RouterSmartAppServer.js",
"scripts": {
"start": "node RouterSmartAppServer.js ",
"lint": "eslint --ext .js lib/* RouterSmartAppServer.js",
"lint:fix": "eslint --fix --ext .js lib/* RouterSmartAppServer.js",
"start-boot": "pm2 start RouterSmartAppServer.js"
},
"author": "vzakharchenko",
"license": "Apache-2.0",
"funding": "https://secure.wayforpay.com/button/b8390c46bf24a",
"bugs": {
"url": "https://github.com/vzakharchenko/smartthings-phone-presence-sensor/issues",
"email": "vaszakharchenko@gmail.com"
},
"homepage": "https://github.com/vzakharchenko/smartthings-phone-presence-sensor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vzakharchenko/smartthings-phone-presence-sensor.git"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "airbnb/base",
"env": {
"browser": false,
"jest": true
},
"rules": {
"no-console": 0,
"prefer-promise-reject-errors": 0,
"prefer-destructuring": 0,
"react/jsx-filename-extension": 0
}
},
"dependencies": {
"axios": "^0.24.0",
"base-64": "^1.0.0",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dateformat": "3.0.3",
"express": "^4.17.2",
"express-session": "^1.17.2",
"keycloak-connect": "16.1.0",
"log4js": "^6.3.0",
"node-routeros": "^1.6.8",
"node-rsa": "^1.1.1",
"node-ssdp": "^4.0.1",
"oui": "^11.0.100",
"request": "^2.88.2",
"url": "^0.11.0"
},
"devDependencies": {
"axios-logger": "^2.6.0",
"babel-eslint": "^10.1.0",
"eslint": "7.18.0",
"eslint-config": "0.3.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0"
},
"keywords": [
"dhcp lease",
"mobile",
"presence sensor",
"router",
"smartthings-device",
"smartapp",
"smartapp-source",
"smartthings",
"smartthings-smartapp",
"smartthings-hub",
"sensor",
"presence-sensor",
"dhcp-leases",
"dhcp-lease",
"dhcp-lease-data",
"mikrotik",
"asus-routers",
"tplink",
"tplink-api"
]
}