-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tcp-exists",
"version": "1.6.1",
"description": "Small and fast functions to check if some tcp endpoint exists",
"type": "module",
"bin": {
"tcp-exists": "./bin/index.js"
},
"main": "cjs/index.js",
"module": "index.js",
"exports": {
".": {
"require": "./cjs/index.js",
"default": "./index.js"
}
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "esbuild index.js --bundle --platform=node --format=cjs --target=node16 --outfile='./cjs/index.js'",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"push-release": "git push --follow-tags origin master",
"prettify": "prettier --write -u './*.js' './**/*.js' !./cjs/index.js",
"test": "standard && node tests/index.js && node cjs/test.js",
"fix": "npm run prettify && standard --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JerryCauser/tcp-exists.git"
},
"keywords": [
"scanner",
"tcp",
"tcp scanner",
"port",
"port scanner",
"portscanner",
"network",
"network scanner",
"nmap"
],
"author": "Artem Abzanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/JerryCauser/tcp-exists/issues"
},
"homepage": "https://github.com/JerryCauser/tcp-exists#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"esbuild": "^0.16.11",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"standard": "^17.0.0",
"standard-version": "^9.5.0"
},
"types": "./src/index.d.ts",
"eslintConfig": {
"extends": [
"eslint:recommended",
"standard"
]
},
"eslintIgnore": [
"cjs/index.js",
"cjs/constants.js",
"types"
],
"files": [
"/bin/index.js",
"/cjs/index.js",
"/cjs/package.json",
"/src",
"/types",
"index.js",
"LICENSE",
"CHANGELOG.md",
"README.md"
]
}