-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "doorbird",
"version": "2.6.0",
"description": "Node JS library for the Doorbird LAN API.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"test": "npm run lint && jest",
"coverage": "jest --coverage",
"build": "tsc --build --clean"
},
"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": {
"@types/jest": "^29.5.8",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"axios": "^1.6.2",
"chacha-js": "^2.1.1",
"libsodium-wrappers-sumo": "^0.7.13"
},
"engines": {
"node": ">=16.0.0"
}
}