-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "get-console-process-list",
"version": "1.0.5",
"description": "Get all process ids attached to the current Windows console",
"main": "index.js",
"scripts": {
"test": "npm run build",
"install": "node-gyp rebuild",
"prepack": "npm run build",
"build": "gen-esm-wrapper . ./.esm-wrapper.mjs"
},
"author": "Anna Henningsen <anna@addaleax.net>",
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.3.0"
},
"license": "Apache-2.0",
"exports": {
"require": "./index.js",
"import": "./.esm-wrapper.mjs"
},
"homepage": "https://github.com/mongodb-js/get-console-process-list",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/get-console-process-list.git"
},
"bugs": "https://github.com/mongodb-js/get-console-process-list/issues",
"typings": "index.d.ts",
"os": [
"win32"
],
"files": [
"binding.cc",
"binding.gyp",
"index.d.ts",
"index.js",
"LICENSE",
".esm-wrapper.mjs"
],
"devDependencies": {
"gen-esm-wrapper": "^1.1.1"
}
}