-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
123 lines (123 loc) · 3.21 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "geofeed-finder",
"version": "1.13.6",
"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.25.9",
"@babel/core": "^7.25.9",
"@babel/node": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.25.9",
"dotenv-cli": "^7.4.2",
"pkg": "^5.8.1",
"release-it": "^17.10.0"
},
"dependencies": {
"batch-promises": "0.0.3",
"brembo": "^2.1.4",
"bulk-whois-parser": "^1.4.11",
"cli-progress": "^3.12.0",
"fast-file-logger": "^1.1.5",
"geofeed-validator": "^1.2.6",
"ip-address": "^9.0.5",
"ip-sub": "^1.5.8",
"longest-prefix-match": "^1.2.7",
"md5": "^2.3.0",
"moment": "^2.30.1",
"redaxios": "^0.5.1",
"whois-wrapper": "^1.0.11",
"yargs": "^17.7.2"
},
"pkg": {
"scripts": [],
"assets": [
"./src/dataset/*.json"
],
"targets": [
"node18"
]
},
"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"
]
}
}
}