-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "domrobot-client",
"version": "3.2.2",
"description": "INWX Domrobot Node.JS Client",
"author": "INWX Developer <developer@inwx.de> (https://inwx.com)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/inwx/nodejs-client.git"
},
"keywords": [
"INWX",
"API",
"INWX-API",
"Domrobot",
"Client",
"Domrobot-Client",
"Node",
"NodeJS"
],
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "npm run build"
},
"dependencies": {
"otplib": "^12.0.1"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@types/otplib": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"browserify": "^17.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=18"
}
}