forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.71 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
{
"name": "vue-devtools",
"version": "5.3.2",
"description": "devtools for Vue.js!",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cross-env PORT=8100 npm run dev:shell",
"dev:shell": "cd packages/shell-dev && webpack-dev-server --inline --hot --no-info",
"dev:chrome": "cd packages/shell-chrome && webpack --watch --hide-modules",
"dev:chrome:prod": "cd packages/shell-chrome && cross-env NODE_ENV=production webpack --watch --hide-modules",
"lint": "eslint --ext=js,vue packages/app-backend/src packages/app-frontend/src packages/shared-utils/src packages/shell-chrome/src packages/shell-dev/src packages/shell-electron/src",
"build": "cd packages/shell-chrome && cross-env NODE_ENV=production webpack --progress --hide-modules",
"run:firefox": "web-ext run -s packages/shell-chrome -a dist -i src",
"zip": "npm run zip:chrome && npm run zip:firefox",
"zip:chrome": "cd packages && zip -r -FS ../dist/chrome.zip shell-chrome -x *src/* -x *webpack.config.js",
"zip:firefox": "web-ext build -s packages/shell-chrome -a dist -i src --overwrite-dest",
"sign:firefox": "cross-env WEB_EXT_API_KEY=VUE_DEVTOOLS_AMO_KEY WEB_EXT_API_SECRET=VUE_DEVTOOLS_AMO_SECRET web-ext sign -s packages/shell-chrome -a dist -i src --id {f0beaa66-17d0-42e9-b1c9-c52da6252db8}",
"release": "npm run test && node release.js && npm run build && npm run zip && npm run pub",
"release:beta": "cross-env RELEASE_CHANNEL=beta npm run release && npm run sign:firefox && npm run pub",
"pub": "cd packages/shell-electron && npm publish",
"test": "npm run lint && npm run test:e2e",
"test:e2e": "cross-env PORT=4040 start-server-and-test dev:shell http://localhost:4040 test:e2e:run",
"test:e2e:run": "cypress run --config baseUrl=http://localhost:4040",
"test:open": "cypress open --config baseUrl=http://localhost:8100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-devtools.git"
},
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-devtools/issues"
},
"homepage": "https://github.com/vuejs/vue-devtools#readme",
"devDependencies": {
"autoprefixer": "^9.1.5",
"cross-env": "^5.2.0",
"cypress": "^3.1.0",
"eslint": "^5.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"inquirer": "^6.2.0",
"semver": "^5.5.1",
"start-server-and-test": "^1.7.1"
},
"resolutions": {
"cypress": "=3.4.1"
},
"engines": {
"node": ">=8.10"
}
}