-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "clipboard-manager-electron",
"version": "3.6.5",
"description": "A clipboard manager built with Electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard --fix",
"build": "electron-builder -p never --config ./electron-builder.yml"
},
"author": "Fernando M. Tenório <[email protected]> (https://blog.dotenorio.com)",
"license": "MIT",
"dependencies": {
"auto-launch": "^5.0.5",
"lodash": "^4.17.20",
"lowdb": "^1.0.0",
"node-notifier": "^8.0.0"
},
"devDependencies": {
"electron": "^18.3.7",
"electron-builder": "^22.8.0",
"standard": "^14.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotenorio/clipboard-manager-electron.git"
},
"keywords": [
"electron-app",
"javascript",
"clipboard",
"clipboard-manager",
"electron"
],
"bugs": {
"url": "https://github.com/dotenorio/clipboard-manager-electron/issues"
},
"homepage": "https://github.com/dotenorio/clipboard-manager-electron#readme",
"standard": {
"globals": [
"title",
"win"
]
}
}