-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
117 lines (117 loc) · 2.94 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
{
"name": "qvault",
"version": "0.3.1",
"description": "A secure and open-source secret store",
"homepage": "https://qvault.io",
"repository": "https://github.com/Q-Vault/Qvault",
"license": "SEE LICENSE IN <LICENSE>",
"keywords": [
"Qvault",
"passwords",
"crypto"
],
"author": {
"name": "Qvault",
"email": "[email protected]"
},
"main": "main.js",
"scripts": {
"release": "yarn build-prod && electron-builder",
"build-prod": "yarn snyk-protect && yarn build --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",
"snyk-protect": "snyk protect",
"release-arch-linux": "(cd scripts && ./archLinuxRelease.sh)"
},
"build": {
"appId": "io.qvault.app",
"afterSign": "scripts/afterSign.js",
"productName": "QVault",
"fileAssociations": [
{
"ext": "qvault",
"name": "Qvault",
"mimeType": "application/qvault"
}
],
"files": [
"main.js",
"index.html",
"dist/*",
"main/*"
],
"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"
},
"nsis": {
"createDesktopShortcut": "always",
"license": "LICENSE"
}
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"css-loader": "^2.1.0",
"electron": "^6.0.1",
"electron-builder": "^21.2.0",
"electron-notarize": "^0.1.1",
"eslint": "^5.15.3",
"eslint-plugin-vue": "^5.2.2",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"raw-loader": "^2.0.0",
"snyk": "^1.192.2",
"url-loader": "^1.1.2",
"vue-loader": "^15.5.1",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.28.4",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"bip32": "2.0.4",
"bip39": "3.0.2",
"electron-updater": "4.0.6",
"electron-window-state": "5.0.3",
"qrcode": "1.4.1",
"semver": "^6.3.0",
"simple-keyboard": "2.21.0",
"vue": "^2.5.22",
"vue-qrcode-reader": "1.3.4",
"vue-router": "^3.0.2",
"vuex": "^3.1.1"
},
"snyk": true
}