-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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": "get-ip-range",
"version": "4.0.1",
"description": "Simple utility to convert either CIDR notation or two IP addresses to an array of the range of IP addresses",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "tsc",
"prepare": "npm run build",
"lint": "tslint -c tslint.json *.ts"
},
"files": [
"index.ts"
],
"keywords": [
"CIDR",
"IP"
],
"author": "@JoeScho <joeschofield@live.co.uk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoeScho/get-ip-range/issues"
},
"homepage": "https://github.com/JoeScho/get-ip-range#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JoeScho/get-ip-range.git"
},
"devDependencies": {
"@types/ip": "^1.1.0",
"jest": "^26.5.3",
"pre-commit": "^1.2.2",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"pre-commit": [
"test",
"lint"
],
"dependencies": {
"ip": "^1.1.5",
"ip-address": "^6.1.0"
}
}