-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 2.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@paymoapp/electron-shutdown-handler",
"version": "1.1.2",
"description": "Handle shutdown messages on windows in your electron app and delay system shutdown",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "node install.js",
"install:win32": "prebuild-install -r napi || node-gyp rebuild",
"demo": "node_modules\\electron\\dist\\electron.exe demo/electron.js --no-sandbox",
"clean": "node-gyp clean && rimraf dist",
"build": "npm run clean && npm run build:ts && npm run build:gyp",
"build:ts": "tsc",
"build:gyp": "node-gyp rebuild",
"prebuild": "prebuild --all -r napi --strip",
"typecheck": "tsc --noEmit",
"lint": "esw --color --ext .ts src",
"lint:fix": "esw --color --fix --ext .ts src",
"lint:watch": "esw --color --fix --watch --cache --ext .ts src",
"format": "prettier --write src",
"generate:readme-toc": "markdown-toc -i --bullets=\"-\" --maxdepth=4 README.md",
"release": "standard-version",
"release:pre": "standard-version --prerelease"
},
"binary": {
"napi_versions": [
6
]
},
"files": [
"binding.gyp",
"install.js",
"dist/",
"module/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paymoapp/electron-shutdown-handler.git"
},
"keywords": [
"electron",
"windows",
"shutdown",
"delay"
],
"author": "Paymo LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/paymoapp/electron-shutdown-handler/issues"
},
"homepage": "https://github.com/paymoapp/electron-shutdown-handler#readme",
"devDependencies": {
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"electron": "^20.1.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-watch": "^8.0.0",
"markdown-toc": "^1.2.0",
"node-gyp": "^9.1.0",
"prebuild": "^13.0.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"typescript": "^4.8.2"
},
"dependencies": {
"node-addon-api": "^5.0.0",
"prebuild-install": "^7.1.2"
},
"standard-version": {
"scripts": {
"prerelease": "git fetch --all --tags"
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "imp",
"section": "Improvements"
},
{
"type": "ci",
"section": "Build/CI"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "test",
"section": "Testing"
}
]
}
}