-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.17 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.17 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
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
{
"name": "ip-navigator",
"version": "1.0.20",
"description": "A tool for IP address manipulation and calculation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./validation": {
"types": "./dist/validation/index.d.ts",
"import": "./dist/validation/index.js"
},
"./conversion": {
"types": "./dist/conversion/index.d.ts",
"import": "./dist/conversion/index.js"
},
"./subnet": {
"types": "./dist/subnet/index.d.ts",
"import": "./dist/subnet/index.js"
},
"./operation": {
"types": "./dist/operation/index.d.ts",
"import": "./dist/operation/index.js"
}
},
"scripts": {
"build": "tsc && tsc-alias",
"start": "pnpm build && node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"homepage": "https://github.com/clebertmarctyson/ip-navigator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/clebertmarctyson/ip-navigator.git"
},
"bugs": {
"url": "https://github.com/clebertmarctyson/ip-navigator/issues",
"email": "contact@marctysonclebert.com"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/marctysonclebert"
},
"keywords": [
"ip",
"ipv4",
"ip-address",
"network",
"networking",
"subnet",
"cidr",
"ip-calculator",
"ip-navigator",
"tools",
"utilities"
],
"author": {
"name": "Marc Tyson CLEBERT",
"email": "contact@marctysonclebert.com",
"url": "https://www.marctysonclebert.com"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^29.5.13",
"@types/node": "^24.10.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.6.2"
}
}