-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.88 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": "pick-port",
"version": "2.1.0",
"description": "Get a free TCP or UDP port for the given IP address",
"author": "José Luis Millán <[email protected]> (https://github.com/jmillan)",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/versatica/pick-port.git"
},
"bugs": {
"url": "https://github.com/versatica/pick-port/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"npm-scripts.mjs",
"lib"
],
"engines": {
"node": ">=18"
},
"keywords": [
"nodejs",
"network",
"port",
"tcp",
"udp"
],
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"typescript:build": "node npm-scripts.mjs typescript:build",
"typescript:watch": "node npm-scripts.mjs typescript:watch",
"lint": "node npm-scripts.mjs lint",
"format": "node npm-scripts.mjs format",
"test": "node npm-scripts.mjs test",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release"
},
"jest": {
"verbose": true,
"testEnvironment": "node",
"testRegex": "src/test/test.*\\.ts",
"transform": {
"^.*\\.ts$": [
"ts-jest",
{
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
]
},
"coveragePathIgnorePatterns": [
"src/test"
],
"cacheDirectory": ".cache/jest"
},
"dependencies": {
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}