56 lines
903 B
JSON
Raw Normal View History

2026-05-31 13:21:13 +02:00
{
"name": "is-ip",
"version": "5.0.1",
"description": "Check if a string is an IP address",
"license": "MIT",
"repository": "sindresorhus/is-ip",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"ip",
"ipv6",
"ipv4",
"regex",
"regexp",
"match",
"test",
"find",
"text",
"pattern",
"internet",
"protocol",
"address",
"validate",
"detect",
"check",
"is",
"string"
],
"dependencies": {
"ip-regex": "^5.0.0",
"super-regex": "^0.2.0"
},
"devDependencies": {
"ava": "^4.3.1",
"tsd": "^0.22.0",
"xo": "^0.54.0"
}
}