-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.64 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "pidtree",
"version": "1.0.0",
"description": "Cross platform children list of a PID",
"license": "MIT",
"homepage": "http://github.com/simonepri/pidtree#readme",
"repository": "github:simonepri/pidtree",
"bugs": {
"url": "https://github.com/simonepri/pidtree/issues",
"email": "simonepri@outlook.com"
},
"author": "Simone Primarosa <simonepri@outlook.com> (https://github.com/simonepri)",
"contributors": [
"Simone Primarosa <simonepri@outlook.com> (https://github.com/simonepri)"
],
"keywords": [
"ps-tree",
"ps",
"tree",
"ppid",
"pid",
"pidtree",
"pgrep",
"list",
"all",
"system",
"process",
"processes"
],
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"pidtree": "./bin/pidtree.js"
},
"files": [
"bin",
"lib",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node ./bin/pidtree.js",
"lint": "xo",
"test": "c8 ava -m \"!*benchmark*\"",
"types": "tsd",
"bench": "ava -m \"*benchmark*\""
},
"devDependencies": {
"ava": "^6.4.1",
"c8": "^10.1.3",
"time-span": "^5.1.0",
"tree-kill": "^1.2.2",
"tsd": "^0.33.0",
"xo": "^2.0.2"
},
"c8": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"prettier": true,
"space": true,
"rules": {
"n/prefer-global/process": "off",
"n/prefer-global/buffer": "off",
"require-unicode-regexp": "off",
"unicorn/prefer-top-level-await": "off"
}
}
}