-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
79 lines (79 loc) · 2.02 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
{
"name": "net-keepalive",
"version": "4.0.14",
"description": "Provides high-level access to socket options like TCP_KEEPIDLE, TCP_KEEPINTVL, TCP_KEEPCNT",
"main": "index.js",
"scripts": {
"build:docs": "jsdoc -c .jsdoc.json",
"test": "concurrently npm:test:*",
"test:unit": "mocha --recursive test/unit",
"test:integration": "mocha --recursive test/integration",
"test:tsd": "tsd",
"coverage": "npm run coverage:run && npm run coverage:report",
"coverage:run": "nyc npm run test:unit",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/hertzg/node-net-keepalive.git"
},
"files": [
"lib/",
"*.d.ts"
],
"engines": {
"node": ">=10.20.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"ffi",
"setsockopt",
"getsockopt",
"ref",
"net",
"keep-alive",
"keepalive",
"keep alive",
"keep",
"alive",
"tcp"
],
"author": "George Kotchlamazashvili <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hertzg/node-net-keepalive/issues"
},
"homepage": "https://hertzg.github.io/node-net-keepalive/",
"dependencies": {
"ffi-rs": "1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/exec": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/node": "^20.0.0",
"all-contributors-cli": "^6.19.0",
"better-docs": "2.3.2",
"concurrently": "^8.0.0",
"husky": "^9.0.0",
"jsdoc": "^3.0.0",
"mocha": "^10.0.0",
"mockery": "^2.1.0",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"should": "^13.2.3",
"sinon": "^18.0.0",
"tsd": "^0.31.0"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}