-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
77 lines (77 loc) · 2.95 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
{
"author": "Rafael Jaques <[email protected]>",
"scripts": {
"start": "electron ./app",
"dev": "electron ./app --debug",
"locale-sync": "/usr/bin/env php ./tools/locale-sync.php",
"test": "eslint ./app/main.js ./app/js/*",
"postinstall": "electron-builder install-app-deps",
"pack": "build --target dir",
"dist": "build --windows --linux --osx",
"dist:osx": "build --osx",
"dist:linux": "build --linux deb rpm freebsd pacman tar.xz --ia32 --x64",
"dist:linux32": "build --linux tar.xz --ia32",
"dist:linux64": "build --linux tar.xz --x64",
"dist:win": "build --windows --ia32 --x64",
"dist:win32": "build --windows --ia32",
"dist:win64": "build --windows --x64",
"publish:osx": "build --osx --publish onTagOrDraft",
"publish:linux": "build --linux deb rpm freebsd pacman tar.xz --publish onTagOrDraft",
"publish:linux32": "build --linux tar.xz --ia32 --publish onTagOrDraft",
"publish:linux64": "build --linux tar.xz --x64 --publish onTagOrDraft",
"publish:win": "npm run publish:win32 && npm run publish:win64",
"publish:win32": "build --windows --ia32 --publish onTagOrDraft",
"publish:win64": "build --windows --x64 --publish onTagOrDraft"
},
"build": {
"appId": "br.rafajaques.phpassistant",
"build.mac.category": "public.app-category.utilities",
"iconUrl": "http://rafajaques.com.br/php-assistant/icon.ico",
"asar": false,
"mac": {
"files": [
"**/*",
"!**/node_modules/*/{README.md,README,readme.md,readme,test}",
"!**/node_modules/.bin",
"!**/*.{o,hprof,orig,pyc,pyo,rbc}",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.editorconfig,.idea,appveyor.yml,.travis.yml,circle.yml}",
"!**/php/php.exe",
"!**/php/php7.dll"
]
},
"win": {
"files": [
"**/*",
"!**/node_modules/*/{README.md,README,readme.md,readme,test}",
"!**/node_modules/.bin",
"!**/*.{o,hprof,orig,pyc,pyo,rbc}",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.editorconfig,.idea,appveyor.yml,.travis.yml,circle.yml}",
"!**/php/osx"
]
},
"linux": {
"files": [
"**/*",
"!**/node_modules/*/{README.md,README,readme.md,readme,test}",
"!**/node_modules/.bin",
"!**/*.{o,hprof,orig,pyc,pyo,rbc}",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.editorconfig,.idea,appveyor.yml,.travis.yml,circle.yml}",
"!**/php/osx",
"!**/php/php.exe",
"!**/php/php7.dll"
]
}
},
"devDependencies": {
"electron": "^1.7.8",
"electron-builder": "^19.34.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0"
}
}