UNPKG

3.28 kBJSONView Raw
1{
2 "name": "vueform",
3 "version": "1.6.3",
4 "description": "Form validation for Vue.js powered by HTML5",
5 "keywords": [
6 "vue",
7 "vue.js",
8 "vuejs",
9 "form",
10 "validation",
11 "validator",
12 "html5",
13 "validitystate"
14 ],
15 "license": "MIT",
16 "main": "dist/vueform.js",
17 "module": "dist/vueform.mjs",
18 "jsnext:main": "dist/vueform.mjs",
19 "author": "Ian Walter <public@iankwalter.com>",
20 "scripts": {
21 "compile": "rollup -c && npm run uglify",
22 "watch": "rollup -wc",
23 "dev": "node build/dev-server.js",
24 "build": "node build/build.js",
25 "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
26 "e2e": "node test/e2e/runner.js",
27 "test": "npm run unit && npm run e2e",
28 "lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs",
29 "uglify": "uglifyjs dist/vueform.js -o dist/vueform.min.js"
30 },
31 "dependencies": {
32 "vue": "^2.1.10",
33 "vue-router": "^2.2.0"
34 },
35 "devDependencies": {
36 "autoprefixer": "^6.7.2",
37 "babel-core": "^6.22.1",
38 "babel-eslint": "^7.1.1",
39 "babel-loader": "^6.2.10",
40 "babel-plugin-external-helpers": "^6.22.0",
41 "babel-plugin-istanbul": "^3.1.2",
42 "babel-plugin-transform-runtime": "^6.22.0",
43 "babel-polyfill": "^6.22.0",
44 "babel-preset-es2015": "^6.22.0",
45 "babel-preset-stage-2": "^6.22.0",
46 "babel-register": "^6.22.0",
47 "chai": "^3.5.0",
48 "chalk": "^1.1.3",
49 "chromedriver": "^2.27.2",
50 "connect-history-api-fallback": "^1.3.0",
51 "cross-env": "^3.1.4",
52 "cross-spawn": "^5.0.1",
53 "css-loader": "^0.26.1",
54 "eslint": "^3.14.1",
55 "eslint-config-standard": "^6.2.1",
56 "eslint-friendly-formatter": "^2.0.7",
57 "eslint-loader": "^1.6.1",
58 "eslint-plugin-html": "^2.0.0",
59 "eslint-plugin-promise": "^3.4.0",
60 "eslint-plugin-standard": "^2.0.1",
61 "eventsource-polyfill": "^0.9.6",
62 "express": "^4.14.1",
63 "extract-text-webpack-plugin": "^2.0.0-rc.2",
64 "file-loader": "^0.10.0",
65 "friendly-errors-webpack-plugin": "^1.1.3",
66 "function-bind": "^1.1.0",
67 "html-webpack-plugin": "^2.28.0",
68 "http-proxy-middleware": "^0.17.3",
69 "inject-loader": "^2.0.1",
70 "json-loader": "^0.5.4",
71 "karma": "^1.4.1",
72 "karma-coverage": "^1.1.1",
73 "karma-mocha": "^1.3.0",
74 "karma-phantomjs-launcher": "^1.0.2",
75 "karma-sinon-chai": "^1.2.4",
76 "karma-sourcemap-loader": "^0.3.7",
77 "karma-spec-reporter": "0.0.26",
78 "karma-webpack": "^2.0.2",
79 "lolex": "^1.5.2",
80 "mocha": "^3.2.0",
81 "nightwatch": "^0.9.12",
82 "node-sass": "^4.2.0",
83 "opn": "^4.0.2",
84 "ora": "^1.1.0",
85 "phantomjs-prebuilt": "^2.1.14",
86 "rollup": "^0.36.3",
87 "rollup-plugin-babel": "^2.6.1",
88 "rollup-watch": "^2.5.0",
89 "sass-loader": "^4.1.1",
90 "selenium-server": "^3.0.1",
91 "semver": "^5.3.0",
92 "shelljs": "^0.7.6",
93 "sinon": "^1.17.7",
94 "sinon-chai": "^2.8.0",
95 "uglifyjs": "^2.4.10",
96 "url-loader": "^0.5.7",
97 "vue-loader": "^10.3.0",
98 "vue-style-loader": "^2.0.0",
99 "vue-template-compiler": "^2.1.10",
100 "webpack": "^2.2.1",
101 "webpack-dev-middleware": "^1.10.0",
102 "webpack-hot-middleware": "^2.16.1",
103 "webpack-merge": "^2.6.1"
104 },
105 "engines": {
106 "node": ">= 4.0.0",
107 "npm": ">= 3.0.0"
108 }
109}