-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (35 loc) · 972 Bytes
/
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
{
"name": "vue-clicky",
"version": "2.0.1",
"main": "dist/index.umd.js",
"module":"dist/index.esm.js",
"scripts": {
"build": "npm run build:umd & npm run build:es",
"build:umd": "rollup --config rollup.config.js --format umd --file dist/index.umd.js",
"build:es": "rollup --config rollup.config.js --format es --file dist/index.esm.js"
},
"description": "Handy debugging tool for Vue. Right click a component to see key info in the console.",
"homepage": "https://github.com/Herteby/vue-clicky",
"author": {
"name": "Simon Herteby"
},
"bugs": {
"url": "https://github.com/Herteby/vue-clicky/issues"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2"
},
"deprecated": false,
"keywords": [
"vue",
"tool",
"debug"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Herteby/vue-clicky.git"
}
}