-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.31 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": "emoji-menu",
"version": "0.1.0",
"description": "a emoji cheat sheet on your menubar",
"main": "app/index.js",
"scripts": {
"start": "electron app/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-packager . emoji-menu --platform=darwin --arch=x64 --version=1.2.0 --out='./build' --overwrite=true --icon=./app/resources/images/icons/emoji-menu.icns",
"dist:mac": "build --platform=osx "
},
"repository": {
"type": "git",
"url": "git+https://github.com/lazybios/emoji-menu.git"
},
"keywords": [
"emoji",
"menubar",
"electron"
],
"author": "lazybios, runfastlynda, cvley",
"license": "MIT",
"bugs": {
"url": "https://github.com/lazybios/emoji-menu/issues"
},
"homepage": "https://github.com/lazybios/emoji-menu#readme",
"dependencies": {
"clipboard": "^1.5.10",
"electron-prebuilt": "^1.2.0",
"menubar": "^4.1.1",
"nedb": "^1.8.0"
},
"devDependencies": {
"cz-conventional-changelog": "^1.1.6",
"electron-builder": "^5.17.0",
"electron-packager": "^7.0.3"
},
"build": {
"mac": {
"title": "emoji-menu",
"icon": "./app/resources/images/icons/emoji-menu.icns"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}