-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 874 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-details",
"version": "1.1.0",
"description": "Proper support for `<details>` tag in Vue.js including `v-model` attribute",
"main": "dist/vue-details.min.js",
"jsdelivr": "dist/vue-details.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kim366/VueDetails.git"
},
"scripts": {
"build": "uglifyjs src/index.js -o dist/vue-details.min.js",
"prepare": "npm run build"
},
"keywords": [
"vue",
"vuejs",
"vue.js",
"component",
"details",
"html5",
"html",
"v-model"
],
"author": "Kim Schmider <[email protected]> (https://schmider.kim)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kim366/VueDetails/issues"
},
"homepage": "https://github.com/kim366/VueDetails#readme",
"devDependencies": {
"uglify-js": "^3.4.4"
},
"dependencies": {}
}