-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 996 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": "is-cidr",
"version": "5.1.0",
"description": "Check if a string is an IP address in CIDR notation",
"author": "silverwind <me@silverwind.io>",
"contributors": [
"Felipe Apostol <flipjs.io@gmail.com> (http://flipjs.io/)"
],
"repository": "silverwind/is-cidr",
"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": {
"cidr-regex": "^4.1.1"
},
"devDependencies": {
"@types/node": "22.5.1",
"eslint": "8.57.0",
"eslint-config-silverwind": "91.0.6",
"eslint-config-silverwind-typescript": "8.0.6",
"typescript": "5.5.4",
"typescript-config-silverwind": "6.0.0",
"updates": "16.4.0",
"versions": "12.1.2",
"vite": "5.4.2",
"vite-config-silverwind": "3.0.0",
"vitest": "2.0.5",
"vitest-config-silverwind": "9.1.0"
}
}