-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "node_js_ipqs_db_reader",
"version": "1.0.5",
"description": "A Node JS implementation of the IPQualityScore flat file IP reputation database reader.",
"main": "index.js",
"types": "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://[email protected]/IPQualityScore/NodeJSIPQSDBReader.git"
},
"keywords": [
"ip",
"reputation",
"flat",
"file",
"database",
"IP",
"Address",
"IPQualityScore"
],
"author": "IPQualityScore LLC <[email protected]> (https://www.ipqualityscore.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/IPQualityScore/NodeJSIPQSDBReader/issues"
},
"homepage": "https://www.ipqualityscore.com",
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}