This repository has been archived by the owner on Sep 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.02 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
{
"name": "GooboxFileShare",
"version": "0.3.4",
"description": "Goobox File Share App",
"main": "lib/index.js",
"scripts": {
"start": "electron .",
"start:debug": "DEV_TOOLS=true electron .",
"build": "webpack --display-used-exports",
"build:production": "webpack --mode production -p --display-used-exports",
"build:watch": "webpack -w",
"check": "eslint src",
"check:fix": "eslint --fix src",
"pack": "electron-builder -m --dir",
"dist": "run-s dist:*",
"dist:mac": "electron-builder -m --x64",
"dist:win": "electron-builder -w --x64",
"dist:linux": "electron-builder -l --x64",
"clean": "del lib/* dist/*",
"update": "run-s update:check update:install update:commit",
"update:check": "updates -u",
"update:install": "yarn install",
"update:commit": "git commit -m \"chore: update dependencies\" -- package.json yarn.lock"
},
"author": "Goobox <support@goobox.io> (https://goobox.io/)",
"contributors": [
"Junpei Kawamoto <kawamoto.junpei@gmail.com> (https://www.jkawamoto.info/)"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GooBox/file-share-desktop.git"
},
"bugs": {
"url": "https://github.com/GooBox/file-share-desktop/issues"
},
"homepage": "https://github.com/GooBox/file-share-desktop",
"dependencies": {
"about-window": "^1.13.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"del-cli": "^2.0.0",
"electron": "^6.0.5",
"electron-builder": "^21.2.0",
"electron-log": "^3.0.7",
"electron-updater": "^4.1.2",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"svg-url-loader": "^3.0.0",
"updates": "^8.5.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}