forked from matfish2/vue-form-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "vue-form-2",
"version": "0.1.64",
"description": "Vue.js 2 form component",
"main": "main.js",
"scripts": {
"build-min": "browserify index.js --s VueForm | uglifyjs -c > dist/vue-form-2.min.js",
"build": "browserify index.js --s VueForm > dist/vue-form-2.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matfish2/vue-form-2.git"
},
"keywords": [
"vuejs2",
"form",
"validation"
],
"author": "Matanya Fisaimer",
"license": "MIT",
"bugs": {
"url": "https://github.com/matfish2/vue-form-2/issues"
},
"browserify": {
"transform": [
"babelify"
]
},
"homepage": "https://github.com/matfish2/vue-form-2#readme",
"files": [
"lib",
"index.js",
"main.js",
"bus.js"
],
"dependencies": {
"vue": ">=2.0.0",
"vue-resource": ">=0.9.0",
"clone": "^1.0.2",
"merge": "^1.2.0",
"moment": "^2.10.6"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^6.2.8",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.2.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"uglifyjs": "^2.4.10"
}
}