-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 KB
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
{
"name": "navystack-ipranges",
"version": "0.7.1",
"description": "A tool for processing and merging CIDR ranges in IP address files.",
"type": "module",
"scripts": {
"build": "tsx src/main.ts",
"build-m": "tsx src/compress.ts -m ipv4.txt ipv6.txt",
"build-c": "tsx src/compress.ts -c ipv4.txt ipv6.txt",
"t1": "prettier -w . && eslint .",
"clear-txt": "/bin/bash -c 'find . -type f -name \"*.txt\" -exec rm {} +'",
"explode": "tsx src/main.ts && tsx src/compress.ts -m ipv4.txt ipv6.txt && tsx src/compress.ts -c ipv4.txt ipv6.txt"
},
"keywords": [
"CIDR",
"IP ranges",
"tool"
],
"author": "NavyStack <navystack@askfront.com>",
"repository": {
"type": "git",
"url": "https://github.com/NavyStack/ipranges.git"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"cidr-tools": "^11.0.2",
"eslint": "^9.16.0",
"node-fetch": "^3.3.2",
"prettier": "^3.4.2",
"prettier-plugin-sh": "^0.14.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.14.0"
}
}