-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.47 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.47 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
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
88
{
"name": "@team-internet/apiconnector",
"description": "Node.js SDK for the insanely fast CentralNic Reseller (fka RRPProxy) API",
"version": "10.0.15",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "Kai Schwarz",
"email": "kai.schwarz@centralnic.com"
},
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"//": "...",
"license": "MIT",
"homepage": "https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk",
"repository": "github:centralnicgroup-opensource/rtldev-middleware-node-sdk",
"bugs": "https://github.com/centralnicgroup-opensource/rtldev-middleware-node-sdk/issues",
"maintainers": [
{
"name": "Kai Schwarz",
"email": "kai.schwarz@centralnic.com"
},
{
"name": "Asif Nawaz",
"email": "asif.nawaz@centralnic.com"
}
],
"engines": {
"node": "^22.14.0 || >= 24.10.0"
},
"keywords": [
"centralnicreseller",
"centralnic",
"cnr",
"domain",
"api",
"connector",
"ssl",
"cert",
"dns",
"backorder",
"premium",
"preregistration",
"registration",
"application"
],
"scripts": {
"compile": "rm -rf dist && tsc --version && tsc --declaration",
"lint": "prettier --write . --ignore-path .prettierignore",
"prepublish": "pnpm run compile",
"documentation": "typedoc",
"test": "cross-env NODE_ENV=development c8 mocha",
"test-demo": "pnpm run prepublish && node ./tests/app.js"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.0",
"@tsconfig/node20": "^20.1.9",
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"cross-env": "^10.0.0",
"mocha": "^11.7.5",
"nock": "^14.0.11",
"prettier": "^3.8.0",
"semantic-release": "^25.0.3",
"semantic-release-replace-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-replace-plugin",
"semantic-release-teams-notify-plugin": "github:centralnicgroup-opensource/rtldev-middleware-semantic-release-notify-plugin",
"tsx": "^4.21.0",
"typedoc": "^0.28.18",
"typescript": "^6.0.2"
},
"dependencies": {
"cross-fetch": "^4.1.0",
"idna-uts46-hx": "^6.1.5"
},
"overrides": {
"serialize-javascript@<7.0.5": ">=7.0.5"
}
}