-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.2 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
{
"name": "node-health-agent",
"version": "1.2.15",
"description": "",
"module": "./index.js",
"exports": {
"require": "./index.js",
"import": "./index.js"
},
"main": "index.js",
"types": "./index.d.ts",
"files": [
"utils.js"
],
"keywords": [
"nodehealth",
"agent",
"debugging",
"diagnosis",
"diagnostic",
"profiling",
"memory",
"dump",
"heap",
"snapshot",
"cpu",
"report",
"environment",
"dependencies",
"variables"
],
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/jest --forceExit",
"lint": "./node_modules/.bin/eslint ./"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wallet77/node-health-agent"
},
"author": "wallet77",
"license": "MIT",
"dependencies": {
"debug": "4.3.4",
"inspector-api": "1.4.6",
"uuid": "9.0.0",
"ws": "8.11.0"
},
"devDependencies": {
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"semver": "^7.3.8"
}
}