UNPKG

bulk-whois-parser

Version:
99 lines (98 loc) 2.48 kB
{ "name": "bulk-whois-parser", "version": "1.4.11", "description": "A lib to parse bulk whois data", "main": "dist/index.js", "bin": { "bulk-whois-parser": "dist/index.js" }, "scripts": { "babel": "./node_modules/.bin/babel", "release": "dotenv release-it", "compile": "babel src -d dist", "serve": "babel-node src/index.js", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/massimocandela/bulk-whois-parser.git" }, "keywords": [ "rpsl", "whois", "bulk", "parser" ], "author": { "name": "Massimo Candela", "url": "https://massimocandela.com" }, "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/massimocandela/bulk-whois-parser/issues" }, "homepage": "https://github.com/massimocandela/bulk-whois-parser#readme", "devDependencies": { "@babel/cli": "^7.25.7", "@babel/core": "^7.25.8", "@babel/node": "^7.25.7", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-object-rest-spread": "^7.20.7", "@babel/preset-env": "^7.25.8", "dotenv-cli": "^7.4.2", "release-it": "^17.10.0" }, "dependencies": { "batch-promises": "0.0.3", "cli-progress": "^3.12.0", "ip-sub": "^1.5.5", "md5": "^2.3.0", "moment": "^2.30.1", "readline": "^1.3.0" }, "release-it": { "hooks": { "before:init": [ "npm ci" ], "after:bump": "npm run compile", "after:release": [ "echo Successfully released ${name} v${version} to ${repo.repository}.", "rm -r dist/" ] }, "git": { "changelog": "git log --pretty=format:\"* %s (%h)\" ${from}...${to}", "requireCleanWorkingDir": true, "requireBranch": "main", "requireUpstream": true, "requireCommits": false, "addUntrackedFiles": false, "commit": true, "commitMessage": "Release v${version}", "commitArgs": [], "tag": true, "tagName": null, "tagAnnotation": "Release v${version}", "tagArgs": [], "push": true, "pushArgs": [ "--follow-tags" ], "pushRepo": "" }, "gitlab": { "release": false }, "npm": { "publish": true }, "github": { "release": true, "releaseName": "v${version}", "tokenRef": "GITHUB_TOKEN", "origin": null, "skipChecks": false } } }