-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.87 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
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
{
"name": "@js-ak/watchdog",
"version": "1.5.0",
"description": "Native watchdog for Node.js that detects event loop lag and freezes with near-zero overhead.",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src",
"native",
"prebuilds",
"binding.gyp",
"README.md",
"COMPATIBILITY.md",
"ARCHITECTURE.md",
"LICENSE"
],
"scripts": {
"install": "node-gyp-build",
"rebuild": "node-gyp rebuild",
"build": "node-gyp rebuild",
"prebuild": "node scripts/prebuild.js",
"test": "node --test --test-concurrency=1 test/lifecycle.test.js test/freeze.integration.test.js test/logging.integration.test.js test/hardening.test.js test/stack.integration.test.js",
"test:hardening": "node --test --test-concurrency=1 test/hardening.test.js",
"smoke:prebuild": "node scripts/smoke-prebuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JS-AK/watchdog.git"
},
"keywords": [
"nodejs",
"event-loop",
"event-loop-lag",
"event loop lag",
"lag",
"watchdog",
"freeze",
"blocked",
"monitoring",
"napi"
],
"author": "JS-AK",
"license": "MIT",
"bugs": {
"url": "https://github.com/JS-AK/watchdog/issues"
},
"homepage": "https://github.com/JS-AK/watchdog#readme",
"engines": {
"node": ">=22"
},
"gypfile": true,
"dependencies": {
"node-gyp-build": "4.8.4"
},
"devDependencies": {
"@semantic-release/changelog": "7.0.0",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "11.0.0",
"@semantic-release/github": "12.0.9",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.1",
"node-gyp": "13.0.1",
"prebuildify": "6.0.1",
"semantic-release": "25.0.8"
}
}