-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 KB
/
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
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
{
"name": "ip-matching",
"version": "2.1.2",
"type": "module",
"main": "./lib/cjs/index.js",
"exports": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"types": "./api/index.d.ts",
"description": "Utilities for IPv4/IPv6 ranges/subnets/masks parsing/matching, string representations, ...",
"devDependencies": {
"@microsoft/api-extractor": "^7.18.17",
"@types/jest": "^27.0.2",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.20",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"scripts": {
"compile": "tsc",
"compile:watch": "tsc -w",
"compile:esm": "tsc -p tsconfig.esm.json",
"test": "jest",
"test:watch": "jest --watch",
"api": "api-extractor run",
"api:local": "api-extractor run -l",
"api:watch": "nodemon -w api-extractor.json -w lib -e d.ts --exec yarn api:local",
"lint": "eslint . --ext .ts --format stylish",
"lint:watch": "nodemon -w .eslintignore -w .eslintrc.js -w src -e ts --exec yarn eslint . --ext .ts --format stylish",
"prepack": "yarn node ./prepack.cjs"
},
"author": {
"name": "Kelvin Schoofs",
"url": "https://github.com/SchoofsKelvin",
"email": "[email protected]"
},
"homepage": "https://www.npmjs.com/package/ip-matching",
"bugs": "https://github.com/SchoofsKelvin/ip-matching/issues",
"repository": "SchoofsKelvin/ip-matching",
"license": "LGPL-3.0-only",
"keywords": [
"match",
"IP",
"address",
"IPv4",
"IPv6",
"CIDR",
"notation",
"range",
"subnet",
"subnetwork",
"net",
"network",
"mask"
],
"files": [
"api/",
"lib/**/*.js",
"!lib/**/*.test.js",
"README.md",
"CHANGELOG.md"
],
"packageManager": "[email protected]"
}