Skip to content

Commit 1984753

Browse files
committed
[skip ci] add -t argument to test:docker command for better output
1 parent 6871d53 commit 1984753

File tree

1 file changed

+63
-63
lines changed

1 file changed

+63
-63
lines changed

package.json

Lines changed: 63 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
11
{
2-
"name": "vue-cli-plugin-electron-builder",
3-
"version": "1.0.0-beta.8",
4-
"description": "A Vue Cli 3 plugin for Electron with no required configuration",
5-
"main": "index.js",
6-
"homepage": "https://nklayman.github.io/vue-cli-plugin-electron-builder/",
7-
"scripts": {
8-
"test": "jest",
9-
"test:docker": "docker build -t vcpeb . && docker run --rm --name vcpeb vcpeb",
10-
"pretest": "rimraf __tests__/projects/*",
11-
"lint": "eslint --ignore-pattern projects ./",
12-
"docs:dev": "vuepress dev docs",
13-
"docs:build": "vuepress build docs",
14-
"docs:deploy": "node ./deployDocs.js"
15-
},
16-
"keywords": [
17-
"electron",
18-
"vue",
19-
"cli",
20-
"vue-cli",
21-
"vue-cli-plugin",
22-
"webpack",
23-
"electron-builder",
24-
"electron-webpack"
25-
],
26-
"repository": "https://github.com/nklayman/vue-cli-plugin-electron-builder.git",
27-
"author": "Noah Klayman <[email protected]>",
28-
"license": "MIT",
29-
"private": false,
30-
"dependencies": {
31-
"electron-builder": "^20.28.1",
32-
"execa": "^0.11.0",
33-
"fs-extra": "^7.0.0",
34-
"lodash.merge": "^4.6.1",
35-
"portfinder": "^1.0.16",
36-
"spectron": "^3.8.0",
37-
"uglifyjs-webpack-plugin": "^1.3.0",
38-
"unzip-crx": "^0.2.0",
39-
"webpack": "^4.16.5",
40-
"webpack-chain": "^4.9.0",
41-
"webpack-target-electron-renderer": "^0.4.0"
42-
},
43-
"devDependencies": {
44-
"@vue/cli": "^3.0.1",
45-
"@vue/cli-plugin-babel": "^3.0.1",
46-
"@vue/cli-plugin-eslint": "^3.0.1",
47-
"@vue/cli-plugin-typescript": "^3.0.1",
48-
"@vue/cli-plugin-unit-jest": "^3.0.1",
49-
"@vue/cli-service": "^3.0.1",
50-
"@vue/cli-test-utils": "^3.0.1",
51-
"@vue/eslint-config-typescript": "^3.0.1",
52-
"electron": "^2.0.7",
53-
"eslint-config-standard": "^11.0.0",
54-
"eslint-plugin-import": "^2.14.0",
55-
"eslint-plugin-node": "^7.0.1",
56-
"eslint-plugin-promise": "^4.0.0",
57-
"eslint-plugin-standard": "^3.1.0",
58-
"jest": "^23.5.0",
59-
"lnk": "^1.1.0",
60-
"rimraf": "^2.6.2",
61-
"typescript": "^3.0.1",
62-
"vue": "2.5.17",
63-
"vuepress": "^0.14.2"
64-
}
2+
"name": "vue-cli-plugin-electron-builder",
3+
"version": "1.0.0-beta.8",
4+
"description": "A Vue Cli 3 plugin for Electron with no required configuration",
5+
"main": "index.js",
6+
"homepage": "https://nklayman.github.io/vue-cli-plugin-electron-builder/",
7+
"scripts": {
8+
"test": "jest",
9+
"test:docker": "docker build -t vcpeb . && docker run -t --rm --name vcpeb vcpeb",
10+
"pretest": "rimraf __tests__/projects/*",
11+
"lint": "eslint --ignore-pattern projects ./",
12+
"docs:dev": "vuepress dev docs",
13+
"docs:build": "vuepress build docs",
14+
"docs:deploy": "node ./deployDocs.js"
15+
},
16+
"keywords": [
17+
"electron",
18+
"vue",
19+
"cli",
20+
"vue-cli",
21+
"vue-cli-plugin",
22+
"webpack",
23+
"electron-builder",
24+
"electron-webpack"
25+
],
26+
"repository": "https://github.com/nklayman/vue-cli-plugin-electron-builder.git",
27+
"author": "Noah Klayman <[email protected]>",
28+
"license": "MIT",
29+
"private": false,
30+
"dependencies": {
31+
"electron-builder": "^20.28.1",
32+
"execa": "^0.11.0",
33+
"fs-extra": "^7.0.0",
34+
"lodash.merge": "^4.6.1",
35+
"portfinder": "^1.0.16",
36+
"spectron": "^3.8.0",
37+
"uglifyjs-webpack-plugin": "^1.3.0",
38+
"unzip-crx": "^0.2.0",
39+
"webpack": "^4.16.5",
40+
"webpack-chain": "^4.9.0",
41+
"webpack-target-electron-renderer": "^0.4.0"
42+
},
43+
"devDependencies": {
44+
"@vue/cli": "^3.0.1",
45+
"@vue/cli-plugin-babel": "^3.0.1",
46+
"@vue/cli-plugin-eslint": "^3.0.1",
47+
"@vue/cli-plugin-typescript": "^3.0.1",
48+
"@vue/cli-plugin-unit-jest": "^3.0.1",
49+
"@vue/cli-service": "^3.0.1",
50+
"@vue/cli-test-utils": "^3.0.1",
51+
"@vue/eslint-config-typescript": "^3.0.1",
52+
"electron": "^2.0.7",
53+
"eslint-config-standard": "^11.0.0",
54+
"eslint-plugin-import": "^2.14.0",
55+
"eslint-plugin-node": "^7.0.1",
56+
"eslint-plugin-promise": "^4.0.0",
57+
"eslint-plugin-standard": "^3.1.0",
58+
"jest": "^23.5.0",
59+
"lnk": "^1.1.0",
60+
"rimraf": "^2.6.2",
61+
"typescript": "^3.0.1",
62+
"vue": "2.5.17",
63+
"vuepress": "^0.14.2"
64+
}
6565
}

0 commit comments

Comments
 (0)