This repository has been archived by the owner on Oct 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
/
package.json
154 lines (154 loc) · 5.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "zazu",
"version": "0.6.0",
"description": "A cross platform productivity application.",
"scripts": {
"prepush": "npm run lint && npm test",
"prerelease": "npm install",
"build": "npm run build:js && cross-env npDEBUG=electron-builder ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true build --x64",
"build:archlinux": "npm run build:js && cross-env DEBUG=electron-builder ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true build --x64 --linux pacman",
"release:win": "npm run build:js && cross-env DEBUG=electron-builder ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true build --x64 --win --publish onTag",
"release:linux": "npm run build:js && cross-env DEBUG=electron-builder ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true build --x64 --linux --publish onTag",
"release:osx": "npm run build:js && cross-env DEBUG=electron-builder ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true build --x64 --publish onTag",
"build:js": "concurrently \"npm run build:main\" \"npm run build:renderer\" \"npm run build:debug\"",
"build:main": "cross-env NODE_ENV=production webpack --config ./configs/webpack.config.main.prod.babel.js --colors",
"build:renderer": "cross-env NODE_ENV=production webpack --config ./configs/webpack.config.renderer.prod.babel.js --colors",
"build:debug": "cross-env NODE_ENV=production webpack --config ./configs/webpack.config.renderer.debug.prod.babel.js --colors",
"start": "cross-env NODE_ENV=development electron -r @babel/register ./app/background.js",
"test": "cross-env NODE_ENV=test electron-mocha -r @babel/register --recursive test/app",
"cucumber": "cucumber-js --format ./features/support/custom_formattor.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:publish": "gulp ghpages"
},
"main": "app/dist/background.prod.js",
"build": {
"productName": "Zazu",
"appId": "com.tinytacoteam.zazu",
"npmRebuild": false,
"files": [
"app",
"package.json"
],
"publish": [
"github"
],
"win": {
"target": [
"nsis"
],
"icon": "resources/windows/icon.ico"
},
"nsis": {
"oneClick": true,
"installerHeaderIcon": "resources/windows/setup-icon.ico"
},
"linux": {
"target": [
"deb"
]
},
"mac": {
"target": [
"dmg"
],
"icon": "resources/osx/icon.icns",
"category": "public.app-category.productivity"
},
"dmg": {
"icon": "resources/osx/dmg-icon.icns",
"background": "resources/osx/dmg-background.png"
},
"directories": {
"buildResources": "resources"
}
},
"browserslist": "electron 5.0",
"email": "[email protected]",
"author": "Tiny Taco Team <[email protected]>",
"homepage": "http://zazuapp.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tinytacoteam/zazu.git"
},
"bugs": {
"url": "https://github.com/tinytacoteam/zazu/issues"
},
"dependencies": {
"auto-launch": "^5.0.5",
"cuid": "^2.1.6",
"decompress": "^4.2.0",
"fs-jetpack": "^2.2.2",
"interweave": "^11.1.0",
"mkdirp": "^0.5.1",
"mousetrap": "^1.6.3",
"nestdb": "^2.0.0",
"node-notifier": "^5.4.0",
"npm": "^6.9.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"relaxed-json": "^1.0.3",
"request": "^2.88.0",
"semver": "^6.1.1",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"asar": "^2.0.1",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@babel/runtime": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"babel-plugin-dynamic-import-node-babel-7": "^2.0.7",
"babel-plugin-closure-elimination": "^1.3.0",
"babel-plugin-macros": "^2.6.1",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"cucumber": "^5.1.0",
"electron": "^5.0.4",
"electron-builder": "^20.43.0",
"electron-mocha": "^8.0.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "4.0.0",
"fs-jetpack": "^2.2.2",
"gh-pages": "^2.0.1",
"gulp": "^4.0.2",
"gulp-util": "^3.0.8",
"husky": "^2.4.1",
"is-travis": "^2.0.0",
"mini-css-extract-plugin": "^0.7.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"q": "^1.5.1",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"spectron": "^5.0.0",
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.34.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.4",
"webpack-merge": "^4.2.1"
},
"optionalDependencies": {
"appdmg": "^0.6.0",
"robotjs": "^0.5.1",
"rcedit": "^2.0.0"
}
}