Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « is-cidr « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b02775a0e3f6f8346afa526b1cd87b6796f117ea (plain)
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
{
  "name": "is-cidr",
  "version": "4.0.2",
  "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",
  "scripts": {
    "test": "make test"
  },
  "engines": {
    "node": ">=10"
  },
  "files": [
    "index.js",
    "index.d.ts"
  ],
  "keywords": [
    "cidr",
    "regex",
    "notation",
    "cidr notation",
    "prefix",
    "prefixes",
    "ip",
    "ip address",
    "network"
  ],
  "dependencies": {
    "cidr-regex": "^3.1.1"
  },
  "devDependencies": {
    "eslint": "7.10.0",
    "eslint-config-silverwind": "18.0.10",
    "jest": "26.4.2",
    "updates": "11.1.5",
    "versions": "8.4.3"
  },
  "jest": {
    "verbose": false,
    "testTimeout": 10000
  }
}