-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
36 lines (36 loc) · 869 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
36
{
"name": "vue-append",
"version": "2.1.0",
"description": "vue-append, like v-html directive, but it can call javascript function",
"main": "vue-append.js",
"files": [
"vue-append.js",
"vue-append.min.js"
],
"scripts": {
"build": "uglifyjs vue-append.js -c -m > vue-append.min.js",
"dev": "webpack --watch example/example.js example/example.build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacke2/vue-append.git"
},
"keywords": [
"vue",
"vue-append",
"vue-html-call-function"
],
"author": "hacke2",
"license": "MIT",
"bugs": {
"url": "https://github.com/hacke2/vue-append/issues"
},
"homepage": "https://github.com/hacke2/vue-append#readme",
"dependencies": {
"vue": "^2.3.2"
},
"devDependencies": {
"uglify-js": "^2.8.22",
"webpack": "^2.5.0"
}
}