forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
{
"name": "vue-devtools",
"version": "5.1.1",
"description": "devtools for Vue.js!",
"main": "index.js",
"scripts": {
"dev": "cross-env PORT=8100 npm run dev:shell",
"dev:shell": "cd shells/dev && webpack-dev-server --inline --hot --no-info",
"dev:chrome": "cd shells/chrome && webpack --watch --hide-modules",
"dev:chrome:prod": "cd shells/chrome && cross-env NODE_ENV=production webpack --watch --hide-modules",
"lint": "eslint --ext=js,vue src shells/chrome/src shells/dev/src shells/electron/src",
"build": "cd shells/chrome && cross-env NODE_ENV=production webpack --progress --hide-modules",
"run:firefox": "web-ext run -s shells/chrome -a dist -i src",
"zip": "npm run zip:chrome && npm run zip:firefox",
"zip:chrome": "cd shells && zip -r -FS ../dist/chrome.zip chrome -x *src/* -x *webpack.config.js",
"zip:firefox": "web-ext build -s shells/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 shells/chrome -a dist -i src --id {f0beaa66-17d0-42e9-b1c9-c52da6252db8}",
"release": "node release.js && npm run test && npm run build && npm run zip",
"release:beta": "cross-env RELEASE_CHANNEL=beta npm run release && npm run sign:firefox",
"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"
},
"keywords": [
"vue",
"devtools"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue-devtools/issues"
},
"homepage": "https://github.com/vuejs/vue-devtools#readme",
"dependencies": {
"@vue/ui": "^0.10.5",
"circular-json-es6": "^2.0.2",
"d3": "^5.9.2",
"lodash.debounce": "^4.0.8",
"lodash.groupby": "^4.6.0",
"lru-cache": "^5.1.1",
"vue": "^2.6.10",
"vue-router": "^3.0.2",
"vue-virtual-scroller": "^1.0.0-rc.2",
"vuex": "^3.1.0"
},
"devDependencies": {
"autoprefixer": "^9.1.5",
"buble": "^0.19.0",
"buble-loader": "^0.5.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.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",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"inquirer": "^6.2.0",
"launch-editor-middleware": "^2.2.1",
"postcss-loader": "^3.0.0",
"raw-loader": "^0.5.1",
"semver": "^5.5.1",
"start-server-and-test": "^1.7.1",
"style-resources-loader": "^1.2.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.1.1",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">=8.10"
}
}