forked from vuejs/devtools-v6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "vue-devtools",
"version": "3.0.8",
"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",
"lint": "eslint src --ext=js,vue && eslint shells/chrome/src && eslint shells/dev/src",
"build": "npm run lint && cd shells/chrome && cross-env NODE_ENV=production webpack --progress --hide-modules",
"zip": "rm -f chrome.zip && cd shells && zip -r ../chrome.zip chrome -x *src/* -x *webpack.config.js",
"release": "npm run test && npm run build && npm run zip",
"test": "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-config-vue": "^2.0.0",
"eslint-plugin-vue": "^1.0.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": "^11.0.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",
"vue": "^2.0.0",
"vuex": "^2.0.0"
}
}