forked from wagslane/qvault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.85 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": "qvault",
"version": "0.0.35",
"description": "A secure and open-source secret store",
"homepage": "https://qvault.io",
"repository": "https://github.com/Q-Vault/Qvault",
"keywords": [
"Qvault",
"passwords",
"crypto"
],
"author": {
"name": "Q Vault",
"email": "[email protected]"
},
"main": "main.js",
"scripts": {
"release": "yarn build-prod && build",
"build-prod": "npx webpack --progress --config webpack.config.js --env=production",
"build": "npx webpack --progress --config webpack.config.js",
"dev": "yarn build && yarn start",
"start": "electron .",
"test": "./node_modules/.bin/mocha --require @babel/register --require @babel/polyfill",
"lint": "eslint ./ --ext .js --ext .vue --ext .es6",
"lint-fix": "eslint --fix ./ --ext .js --ext .vue --ext .es6"
},
"build": {
"appId": "io.qvault.app",
"afterSign": "scripts/afterSign.js",
"productName": "QVault",
"files": [
"main.js",
"index.html",
"dist/*",
"scripts/preload.js"
],
"directories": {
"output": "release"
},
"publish": "github",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "./build/entitlements.mac.inherit.plist",
"entitlementsInherit": "./build/entitlements.mac.inherit.plist"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"appImage": {
"license": "LICENSE.md"
},
"nsis": {
"createDesktopShortcut": "always",
"license": "LICENSE.md"
}
},
"devDependencies": {
"chai": "^4.2.0",
"electron": "^5.0.2",
"electron-builder": "20.43.0",
"electron-notarize": "^0.1.1",
"eslint": "^5.15.3",
"eslint-plugin-vue": "^5.2.2",
"mocha": "^5.2.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"cross-fetch": "^3.0.1",
"css-loader": "^2.1.0",
"csv-parse": "^4.4.1",
"electron-log": "^3.0.5",
"electron-updater": "^4.0.6",
"electron-window-state": "^5.0.3",
"es6-promise": "^4.2.5",
"json-stable-stringify": "^1.0.1",
"jwt-decode": "^2.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"moment": "^2.24.0",
"random-number-csprng": "^1.0.2",
"raw-loader": "^2.0.0",
"simple-keyboard": "^2.21.0",
"url-loader": "^1.1.2",
"vue": "^2.5.22",
"vue-async-computed": "^3.5.1",
"vue-loader": "^15.5.1",
"vue-qrcode-reader": "^1.3.4",
"vue-router": "^3.0.2",
"vue-scrollto": "^2.13.0",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.28.4"
}
}