-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "homebridge-blinkcameras",
"version": "1.1.5",
"description": "Blink Camera plugin for homebridge",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"main": "src/index.js",
"files": [
"src",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "git@github.com:bartdorsey/homebridge-blinkcameras.git"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@hapi/cryptiles": "^5.1.0",
"@types/jest": "^27.4.1",
"async-lock": "^1.3.1",
"lodash": ">=4.17.21",
"moment": "^2.29.1",
"node-blink-security": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.5.1",
"eslint": "^8.10.0",
"faker": "^6.6.6",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"rollup": "^2.70.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"npm-check-updates": "^16.7.4"
},
"scripts": {
"test": "jest",
"lint": "eslint src/index.js",
"check": "npm install && npm outdated",
"update": "ncu -u && npm update && npm install"
}
}