-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.39 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
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
{
"name": "@team-internet/apiconnector",
"description": "Node.js SDK for the insanely fast CentralNic Reseller (fka RRPProxy) API",
"version": "10.0.3",
"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",
"engines": {
"node": ">=20.6.1"
},
"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"
}
],
"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 .",
"prepublish": "npm run compile",
"documentation": "typedoc",
"test": "cross-env NODE_ENV=development c8 mocha",
"test-demo": "npm run prepublish && node ./tests/app.js"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.9",
"@types/nock": "^11.1.0",
"@types/node": "^22.9.0",
"c8": "^10.1.2",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"cross-env": "^7.0.3",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"prettier": "^3.0.0",
"semantic-release": "^24.2.0",
"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.19.2",
"typedoc": "^0.27.0",
"typescript": "^5.6.3"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"idna-uts46-hx": "^6.0.5"
}
}