-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 1012 Bytes
/
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
{
"name": "cidr-regex",
"version": "4.1.3",
"description": "Regular expression for matching IP addresses in CIDR notation",
"author": "silverwind <me@silverwind.io>",
"contributors": [
"Felipe Apostol <flipjs.io@gmail.com> (http://flipjs.io/)"
],
"repository": "silverwind/cidr-regex",
"license": "BSD-2-Clause",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"dependencies": {
"ip-regex": "^5.0.0"
},
"devDependencies": {
"@types/node": "22.13.4",
"eslint": "8.57.0",
"eslint-config-silverwind": "99.0.0",
"eslint-config-silverwind-typescript": "9.2.2",
"typescript": "5.7.3",
"typescript-config-silverwind": "8.0.0",
"updates": "16.4.2",
"versions": "12.1.3",
"vite": "6.1.0",
"vite-config-silverwind": "4.0.0",
"vitest": "3.0.5",
"vitest-config-silverwind": "10.0.0"
}
}