-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"name": "node-ps-data",
"description": "Gets data about running processes by process id.",
"author": {
"name": "kaih2o",
"url": "https://github.com/2kai2kai2"
},
"version": "1.5.0",
"keywords": [
"process",
"processes",
"ps",
"pid",
"lookup",
"usage",
"resource",
"performance",
"memory",
"cpu",
"file",
"IO"
],
"repository": {
"url": "https://github.com/2kai2kai2/node-ps-data"
},
"dependencies": {
"node-gyp": "^10.0.1",
"node-gyp-build": "^4.2.0"
},
"devDependencies": {
"@types/node": "^16.9.6",
"node-addon-api": "^4.2.0",
"node-api-headers": "^1.5.0",
"prebuildify": "^6.0.1",
"typescript": "^4.4.4"
},
"gypfile": true,
"license": "GPL-3.0-or-later",
"main": "index.js",
"module": "commonjs",
"scripts": {
"prebuild": "prebuildify --napi --strip -m",
"install": "node-gyp-build",
"install-dependencies": "npm install --ignore-scripts",
"install-deps-production": "npm install --production --ignore-scripts"
},
"type": "commonjs",
"types": "index.d.ts"
}