-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.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
{
"name": "epp-client",
"version": "0.2.1",
"description": "Modern library and CLI for EPP (Extensible Provisioning Protocol) operations",
"scripts": {
"build": "tsc",
"build:bundle": "esbuild dist/index.js --bundle --minify --outfile=dist/bundle.js --platform=node --format=esm",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --env-file=.env.test --test test/*.test.js",
"test:watch": "node --env-file=.env.test --test --watch test/*.test.js",
"test:coverage": "npm run build && node --env-file=.env.test --test --experimental-test-coverage test/*.test.js"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"epp-cli": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"epp",
"domain",
"registry",
"dns",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/namewiz/epp-client.git"
},
"bugs": {
"url": "https://github.com/namewiz/epp-client/issues"
},
"author": "Justice Ogbonna <dev@justiceo.com>",
"license": "MIT",
"dependencies": {
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"xml2js": "^0.6.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/xml2js": "^0.4.14",
"eslint": "^8.57.0",
"typescript": "^5.9.3"
}
}