-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
{
"name": "doorbird",
"version": "2.6.1",
"description": "Node JS library for the Doorbird LAN API.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && jest",
"coverage": "jest --coverage",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihrigb/node-doorbird.git"
},
"keywords": [
"node",
"doorbird"
],
"author": "ihrigb",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/ihrigb/node-doorbird/issues"
},
"homepage": "https://github.com/ihrigb/node-doorbird#readme",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/jest": "^30.0.0",
"@types/libsodium-wrappers-sumo": "^0.8.0",
"eslint": "^9.36.0",
"jest": "^30.0.0",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"dependencies": {
"axios": "^1.12.2",
"chacha-js": "^2.1.1",
"libsodium-wrappers-sumo": "^0.8.0"
},
"engines": {
"node": ">=20.0.0"
}
}