-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "is-localhost-ip",
"version": "2.0.0",
"description": "Checks whether given DNS name or IPv4/IPv6 address belongs to a local machine",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"types": "index.d.ts",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "jest --coverage --verbose",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinovyatkin/is-localhost-ip.git"
},
"keywords": [
"localhost",
"is-localhost",
"check-localhost",
"is-loopback",
"is-local-ip",
"ip",
"dns"
],
"author": "Konstantin Vyatkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tinovyatkin/is-localhost-ip/issues"
},
"homepage": "https://github.com/tinovyatkin/is-localhost-ip#readme",
"devDependencies": {
"@types/jest": "29.5.4",
"@types/node": "12.20.55",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-regexp": "2.1.1",
"jest": "29.7.0",
"prettier": "3.0.0"
},
"jest": {
"coverageReporters": [
"text",
"json",
"cobertura",
"lcov"
],
"coverageProvider": "v8",
"testEnvironment": "node",
"collectCoverage": true
}
}