-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "node_js_ipqs_db_reader",
"version": "3.0.0",
"description": "A Node JS implementation of the IPQualityScore flat file IP reputation database reader.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/IPQualityScore/NodeJSIPQSDBReader.git"
},
"keywords": [
"ip",
"reputation",
"flat",
"file",
"database",
"IP",
"Address",
"IPQualityScore"
],
"author": "IPQualityScore LLC <support@ipqualityscore.com> (https://www.ipqualityscore.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/IPQualityScore/NodeJSIPQSDBReader/issues"
},
"homepage": "https://www.ipqualityscore.com",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.11",
"typescript": "^4.4.4"
}
}