forked from p-sam/electron-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 834 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
{
"name": "electron-find-on-page",
"version": "1.0.1",
"description": "Modified electron-prompt to be used as a find on page dialog.",
"keywords": [
"electron",
"prompt",
"string"
],
"author": {
"name": "Marcus-Goectau",
"email": "[email protected]",
"url": "https://github.com/Marcus-Goectau"
},
"repository": {
"type": "git",
"url": "https://github.com/Marcus-Goectau/electron-find-on-page.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,
"unicorn/prefer-module": 0
}
},
"devDependencies": {
"xo": "^0.44.0"
}
}