This repository was archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
98 lines (98 loc) · 2.48 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
{
"name": "DerivePass",
"version": "1.2.1",
"private": true,
"author": "Fedor Indutny <[email protected]>",
"description": "Compute secure passwords without storing them anywhere",
"license": "MIT",
"main": "src/electron/main.js",
"repository": "[email protected]:derivepass/derivepass-vue",
"build": {
"appId": "com.indutny.derivepass-electron",
"productName": "DerivePass",
"mac": {
"category": "public.app-category.productivity"
},
"publish": [
"github"
],
"files": [
"src/electron",
"dist"
],
"directories": {
"output": "dist-electron"
}
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"now-build": "npm run build && cp -rf dist/precache-manifest*.js dist/precache-manifest.common.js",
"test:unit": "vue-cli-service test:unit",
"electron": "electron .",
"electron:build": "npm run build && electron-builder",
"electron:publish": "npm run electron:build -- -p always"
},
"devDependencies": {
"@kazupon/vue-i18n-loader": "^0.3.0",
"@vue/cli-plugin-eslint": "^3.5.1",
"@vue/cli-plugin-pwa": "^3.5.1",
"@vue/cli-plugin-unit-mocha": "^3.5.1",
"@vue/cli-service": "^3.5.3",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"bn.js": "^4.11.8",
"bootstrap-vue": "^2.0.0-rc.18",
"chai": "^4.1.2",
"csp-html-webpack-plugin": "^3.0.1",
"debug": "^4.1.1",
"electron": "^4.1.4",
"electron-builder": "^20.39.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"hash.js": "^1.1.7",
"jsqr": "^1.2.0",
"mocha": "^5.2.0",
"qr-image": "^3.2.0",
"register-service-worker": "^1.6.2",
"uuid": "^3.3.2",
"vue": "^2.6.10",
"vue-cli-plugin-i18n": "^0.5.2",
"vue-clipboard2": "^0.2.1",
"vue-i18n": "^8.10.0",
"vue-router": "^3.0.3",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.0",
"worker-loader": "^2.0.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"electron-log": "^3.0.5",
"electron-updater": "^4.0.6"
},
"engines": { "node": "12.x" }
}