-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "vue-form",
"version": "4.10.3",
"description": "Form validation for Vue.js",
"repository": "github:fergaldoyle/vue-form",
"main": "dist/vue-form.js",
"scripts": {
"dev": "rollup -w -c",
"test": "karma start",
"dist": "rollup -c && uglifyjs -c -m -- dist/vue-form.js > dist/vue-form.min.js"
},
"author": "Fergal Doyle",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"phantomjs": "^2.1.7",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^3.2.2",
"uglify-js": "^2.7.3",
"vue": "2.4.1",
"yargs": "^7.0.2"
},
"dependencies": {
"extend": "3.0.2",
"scope-eval": "1.0.0"
}
}