forked from nklayman/vue-cli-plugin-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
{
"name": "vue-cli-plugin-electron-builder",
"version": "1.1.3",
"description": "A Vue Cli 3 plugin for Electron with no required configuration",
"main": "index.js",
"homepage": "https://nklayman.github.io/vue-cli-plugin-electron-builder/",
"scripts": {
"test": "jest",
"test:docker": "docker build -t vcpeb . && docker run -t --rm --name vcpeb vcpeb",
"pretest": "rimraf __tests__/projects/*",
"lint": "eslint --ignore-pattern projects ./",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "node ./deployDocs.js"
},
"keywords": [
"electron",
"vue",
"cli",
"vue-cli",
"vue-cli-plugin",
"webpack",
"electron-builder",
"electron-webpack"
],
"repository": "https://github.com/nklayman/vue-cli-plugin-electron-builder.git",
"author": "Noah Klayman <noahklayman@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"electron-builder": "^20.29.0",
"execa": "^1.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^7.0.0",
"lodash.merge": "^4.6.1",
"portfinder": "^1.0.16",
"pumpify": "^1.5.1",
"shebang-loader": "^0.0.1",
"spectron": "^5.0.0",
"split2": "^3.0.0",
"terser-webpack-plugin": "^1.1.0",
"through2-filter": "^3.0.0",
"through2-map": "^3.0.0",
"unzip-crx": "^0.2.0",
"webpack": "^4.18.0",
"webpack-chain": "^5.0.0",
"yargs": "^13.2.2"
},
"devDependencies": {
"@vue/cli": "^3.0.1",
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-typescript": "^3.0.1",
"@vue/cli-plugin-unit-jest": "^3.0.1",
"@vue/cli-plugin-unit-mocha": "^3.4.0",
"@vue/cli-service": "^3.0.1",
"@vue/cli-test-utils": "^3.0.1",
"@vue/eslint-config-typescript": "^3.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"electron": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.5.0",
"lnk": "^1.1.0",
"rimraf": "^2.6.2",
"terminal-tasks": "^0.0.4",
"typescript": "^3.0.1",
"vue": "^2.5.20",
"vue-template-compiler": "^2.5.20",
"vuepress": "^0.14.2"
},
"resolutions": {
"webpack-dev-middleware": "3.6.0"
}
}