-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "cordova-electron-dialogs-fix",
"version": "0.1.1",
"description": "Fix focus issue when alert() or confirm() are called in a Cordova Electron app",
"cordova": {
"id": "cordova-electron-dialogs-fix",
"platforms": [
"electron"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cimatti/cordova-electron-dialogs-fix.git"
},
"keywords": [
"cordova",
"ecosystem:cordova",
"cordova-electron",
"alert",
"confirm",
"focus",
"input"
],
"scripts": {
"jslint": "eslint ./www/ ./src/electron/"
},
"engines": {
"cordovaDependencies": {
"0.1.0": {
"cordova-electron": ">=3.0.0"
}
}
},
"author": "Andrea Cimatti (https://www.cimatti.it/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cimatti/cordova-electron-dialogs-fix/issues"
},
"homepage": "https://github.com/cimatti/cordova-electron-dialogs-fix#readme",
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run jslint"
}
}
}