-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.38 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
{
"name": "concrete5-packager",
"version": "1.2.1",
"description": "Clean & zip up Concrete5 Packages ready for production.",
"productName": "Concrete5 Packager",
"cordovaId": "org.cordova.quasar.app",
"author": {
"name": "Nour Akalay",
"email": "mnakalay@gmail.com",
"url": "https://kalmoya.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mnakalay/concrete5-packager/issues"
},
"keywords": [
"concrete5",
"package",
"PRB",
"desktop",
"concrete5-packager"
],
"homepage": "https://github.com/mnakalay/concrete5-packager#readme",
"private": true,
"build": {
"productName": "Concrete5PackagerDesktop",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"appId": "org.mnakalay.c5packager.desktop",
"win": {
"target": [
"nsis"
]
},
"nsis": {
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
},
"appImage": {
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": {
"provider": "github",
"owner": "mnakalay",
"repo": "concrete5-packager"
}
},
"scripts": {
"lint": "eslint --ext .js,.vue src",
"test": "echo \"No test specified\" && exit 0",
"lint-fix": "eslint --ext .js,.vue src --fix",
"dev": "quasar dev -m electron -t mat",
"build": "quasar build -m electron -t mat",
"build-linux": "quasar build -m electron linux -t mat -b builder",
"build-win32": "quasar build -m electron win32 -t mat -b builder"
},
"dependencies": {
"@quasar/app": "^1.1.2",
"@quasar/extras": "^1.3.2",
"about-window": "^1.13.1",
"archiver": "^3.1.1",
"axios": "^0.18.1",
"chokidar": "^2.1.8",
"cors": "^2.8.5",
"electron-root-path": "^1.0.9",
"electron-store": "^2.0.0",
"express": "^4.16.4",
"fast-glob": "^2.2.6",
"fs-extra": "^7.0.1",
"holmes.js": "^1.17.3",
"quasar": "^1.1.4",
"replace-in-file": "^3.4.3",
"shelljs": "^0.8.3",
"tiny-glob": "^0.2.6",
"vue-i18n": "^7.3.3",
"vue-radial-progress": "^0.2.10"
},
"devDependencies": {
"@quasar/quasar-app-extension-icon-genie": "^1.0.2",
"babel-eslint": "^8.2.1",
"devtron": "^1.4.0",
"electron": "^3.1.13",
"electron-builder": "^20.44.4",
"electron-debug": "^2.0.0",
"electron-devtools-installer": "^2.2.4",
"electron-packager": "^13.1.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.3.0",
"strip-ansi": "=3.0.1"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}