forked from p-sam/electron-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 810 Bytes
/
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
{
"name": "electron-prompt",
"version": "0.0.0-dev",
"description": "Electron helper to prompt for a value via input or select",
"keywords": [
"electron",
"prompt",
"string"
],
"author": {
"name": "p-sam",
"email": "[email protected]",
"url": "https://github.com/p-sam"
},
"repository": {
"type": "git",
"url": "https://github.com/p-sam/electron-prompt.git"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"lint": "xo",
"lint:fix": "xo --fix",
"test": "npm run lint"
},
"xo": {
"esnext": true,
"env": [
"node",
"browser"
],
"rules": {
"unicorn/prefer-ternary": 0
}
},
"dependencies": {
"@electron/remote": "^1.2.1"
},
"devDependencies": {
"xo": "^0.38.2"
}
}