forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.14 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
{
"name": "vue-devtools",
"version": "3.1.5",
"description": "devtools for Vue.js!",
"main": "index.js",
"scripts": {
"dev": "cd shells/dev && webpack-dev-server --inline --hot --no-info",
"dev:chrome": "cd shells/chrome && webpack --watch --hide-modules",
"dev:safari": "cd shells/safari && webpack --watch --hide-modules",
"lint": "eslint src --ext=js,vue && eslint shells/chrome/src && eslint shells/dev/src && eslint shells/safari/src",
"build": "cd shells/chrome && cross-env NODE_ENV=production webpack --progress --hide-modules",
"build:safari": "cd shells/safari && NODE_ENV=production webpack --progress --hide-modules -p",
"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",
"release": "npm run test && npm run build && npm run zip",
"test": "npm run lint && bash test/test.sh"
},
"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",
"devDependencies": {
"buble": "^0.15.1",
"buble-loader": "^0.4.0",
"chromedriver": "^2.25.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"eslint": "^3.9.1",
"eslint-plugin-vue-libs": "^1.2.0",
"file-loader": "^0.9.0",
"friendly-errors-webpack-plugin": "^1.1.2",
"nightwatch": "^0.9.4",
"nightwatch-helpers": "^1.2.0",
"selenium-server": "2.52.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.1",
"url-loader": "^0.5.6",
"vue-loader": "^12.2.0",
"vue-template-compiler": "^2.0.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0"
},
"dependencies": {
"circular-json-es6": "^2.0.0",
"lodash.debounce": "^4.0.6",
"lodash.groupby": "^4.6.0",
"vue": "^2.0.0",
"vuex": "^2.0.0"
}
}