-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.76 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
{
"name": "rpki-validator",
"version": "2.13.14",
"description": "An RPKI validator that works also in the browser.",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"babel": "node_modules/.bin/babel",
"release": "dotenv release-it",
"test": "./node_modules/.bin/mocha tests/*test.js --require @babel/register --exit",
"compile": "rm -rf dist/ && ./node_modules/.bin/babel src -d dist"
},
"author": {
"name": "Massimo Candela",
"url": "https://massimocandela.com"
},
"license": "BSD-3-Clause",
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"dependencies": {
"brembo": "^2.1.5",
"ip-sub": "^1.5.8",
"longest-prefix-match": "^1.2.7",
"net-validations": "^1.0.9",
"node-fetch": "^2.7.0",
"redaxios": "^0.5.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-async-to-generator": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"batch-promises": "^0.0.3",
"chai": "^4.3.10",
"chai-subset": "^1.6.0",
"dotenv-cli": "^7.4.2",
"mocha": "^10.5.2",
"release-it": "^17.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/massimocandela/rpki-validator.git"
},
"keywords": [
"rpki",
"bgp",
"validator",
"origin validation",
"roa"
],
"bugs": {
"url": "https://github.com/massimocandela/rpki-validator/issues"
},
"homepage": "https://github.com/massimocandela/rpki-validator#readme",
"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
}
}
}