-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "node-ip-collection",
"version": "1.0.0",
"description": "Nodejs ip collection (fast search ip in custom range)",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "mocha -- -R spec tests/*.spec.js",
"test-coverage-text": "nyc --check-coverage --lines 90 --per-file --reporter=text mocha -- -R spec tests/*.spec.js",
"test-coverage-html": "nyc --reporter=html mocha -- -R spec tests/*.spec.js",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanchezzzhak/node-ip-collection.git"
},
"keywords": [
"check ip in range",
"ip",
"ip-range"
],
"author": "sanchezzzhak",
"license": "MIT",
"bugs": {
"url": "https://github.com/sanchezzzhak/node-ip-collection/issues"
},
"homepage": "https://github.com/sanchezzzhak/node-ip-collection",
"dependencies": {
"ip-address": "^9.0.5"
},
"engines": {
"node": ">= 12.x",
"npm": ">= 10.x"
},
"devDependencies": {
}
}