-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.45 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.45 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
{
"name": "generate-ctrl-c-event",
"version": "2.0.2",
"description": "Generate ctrl-c (or ctrl-break) events on Windows by calling `Kernel32::GenerateConsoleCtrlEvent()`",
"keywords": [
"windows",
"GenerateConsoleCtrlEvent",
"generate",
"console",
"ctrl",
"event",
"c",
"ctrl+c",
"ctrl-c",
"CTRL_C_EVENT",
"break",
"ctrl+break",
"ctrl-break",
"CTRL_BREAK_EVENT",
"graceful",
"exit",
"shutdown",
"SIGINT"
],
"os": [
"win32"
],
"engines": {
"node": ">=8"
},
"files": [
"lib",
"generate-ctrl-event.ps1"
],
"main": "lib/index.js",
"dependencies": {},
"optionalDependencies": {
"ffi-napi": "^3.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.22.0",
"eslint-config-zenflow": "^3.0.0",
"semantic-release": "^17.4.2"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "yarn lint"
},
"license": "MIT",
"author": {
"name": "Matthew Francis Brunetti",
"email": "zenflow87@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenflow/generate-ctrl-c-event.git"
},
"bugs": {
"url": "https://github.com/zenflow/generate-ctrl-c-event/issues"
},
"homepage": "https://github.com/zenflow/generate-ctrl-c-event#readme",
"prettier": {
"printWidth": 100,
"trailingComma": "all"
}
}