geofeed-finder
Version:
A tool to find geofeed files in rpsl and parse them correctly according to draft-ietf-opsawg-finding-geofeeds
123 lines (122 loc) • 3.27 kB
JSON
{
"name": "geofeed-finder",
"version": "1.15.2",
"description": "A tool to find geofeed files in rpsl and parse them correctly according to draft-ietf-opsawg-finding-geofeeds",
"main": "dist/finder.js",
"bin": {
"geofeed-finder": "dist/index.js"
},
"scripts": {
"babel": "./node_modules/.bin/babel",
"build": "./build.sh",
"compile": "rm -rf dist/ && babel src -d dist && cp -R src/dataset/ dist/dataset/",
"release": "dotenv release-it",
"serve": "babel-node src/index.js",
"inspect": "node --inspect --require @babel/register index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massimocandela/geofeed-finder.git"
},
"keywords": [
"geofeed",
"rpsl",
"whois",
"geolocation"
],
"author": {
"name": "Massimo Candela",
"url": "https://massimocandela.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/massimocandela/geofeed-finder/issues"
},
"homepage": "https://github.com/massimocandela/geofeed-finder#readme",
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/node": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.29.0",
"dotenv-cli": "^11.0.0",
"@yao-pkg/pkg": "^6.14.1",
"release-it": "^19.2.4"
},
"dependencies": {
"batch-promises": "0.0.3",
"brembo": "^2.2.1",
"bulk-whois-parser": "^1.4.15",
"cli-progress": "^3.12.0",
"fast-file-logger": "^1.1.8",
"geofeed-validator": "^1.3.1",
"ip-sub": "^1.8.1",
"longest-prefix-match": "^1.2.12",
"md5": "^2.3.0",
"moment": "^2.30.1",
"redaxios": "^0.5.1",
"whois-wrapper": "^1.1.2",
"yargs": "^17.7.2"
},
"pkg": {
"scripts": [],
"assets": [
"./src/dataset/*.json"
],
"targets": [
"node22"
]
},
"release-it": {
"hooks": {
"before:init": [],
"after:bump": "npm run build",
"after:release": [
"echo Successfully released ${name} v${version} to ${repo.repository}.",
"rm -rf bin/",
"rm -rf 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,
"assets": [
"bin/geofeed-finder-linux-x64",
"bin/geofeed-finder-macos-x64",
"bin/geofeed-finder-win-x64.exe",
"bin/geofeed-finder-macos-arm64"
]
}
}
}