-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.26 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
62
{
"name": "ntsuspend",
"version": "1.0.2",
"description": "Suspend and resume processes on Windows",
"main": "lib.cjs",
"types": "lib.d.ts",
"exports": {
"node": {
"require": "./lib.cjs",
"module": "./lib.mjs",
"import": "./lib.mjs"
}
},
"cpu": [
"x64",
"ia32"
],
"os": [
"win32"
],
"scripts": {
"install": "node --unhandled-rejections=strict ./install.cjs",
"build": "pwsh ./build.ps1 x64 ia32",
"build:x64": "pwsh ./build.ps1 x64",
"build:ia32": "pwsh ./build.ps1 ia32",
"test": "mocha test/**/*.test.{js,mjs}"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FedericoCarboni/node-ntsuspend.git"
},
"keywords": [
"windows",
"win32",
"suspend",
"pause",
"resume",
"process"
],
"author": {
"name": "Federico Carboni",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FedericoCarboni/node-ntsuspend/issues"
},
"homepage": "https://github.com/FedericoCarboni/node-ntsuspend#readme",
"files": [
"/install.cjs",
"/lib.cjs",
"/lib.mjs",
"/lib.d.ts"
],
"devDependencies": {
"mocha": "^8.2.1",
"node-addon-api": "^3.0.2"
}
}