-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
98 lines (98 loc) · 2.42 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
{
"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
}
}
}