UNPKG

1.45 kBJSONView Raw
1{
2 "name": "vue-devtools",
3 "version": "5.1.4",
4 "description": "An electron devtools extension for debugging Vue.js applications.",
5 "keywords": [
6 "electron",
7 "vue-devtools",
8 "vuejs",
9 "zce"
10 ],
11 "homepage": "https://github.com/zce/vue-devtools#readme",
12 "bugs": {
13 "url": "https://github.com/zce/vue-devtools/issues"
14 },
15 "license": "MIT",
16 "author": "zce <w@zce.me> (https://zce.me/)",
17 "files": [
18 "lib",
19 "vender"
20 ],
21 "main": "lib/index.js",
22 "directories": {
23 "lib": "lib",
24 "example": "example",
25 "test": "test"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/zce/vue-devtools.git"
30 },
31 "scripts": {
32 "setup": "git submodule init && git submodule update && cd source && yarn && cd .. && yarn",
33 "vender": "cp -r source/shells/chrome/ vender && rm -rf vender/src && rm -rf vender/webpack.config.js",
34 "build": "rm -rf vender && cd source && yarn build && cd .. && yarn vender",
35 "lint": "standard --fix",
36 "test": "yarn lint && electron example/usage",
37 "preship": "yarn test && yarn build",
38 "ship": "yarn publish"
39 },
40 "devDependencies": {
41 "electron": "8.2.0",
42 "standard": "14.3.1"
43 },
44 "engines": {
45 "node": ">=6"
46 },
47 "standard": {
48 "ignore": [
49 "source",
50 "vender"
51 ]
52 },
53 "publishConfig": {
54 "registry": "https://registry.yarnpkg.com"
55 }
56}