2018-01-27 06:41:05 +03:00
|
|
|
{
|
|
|
|
"name": "vue-formulate",
|
2018-02-27 18:18:58 +03:00
|
|
|
"version": "0.5.0",
|
2018-01-27 06:41:05 +03:00
|
|
|
"description": "The easiest way to build forms in Vue with validation and vuex support.",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
2018-01-31 01:21:21 +03:00
|
|
|
"dev": "webpack --hide-modules --watch",
|
2018-02-02 20:12:45 +03:00
|
|
|
"build": "NODE_ENV=production && webpack -p --hide-modules",
|
2018-01-31 01:21:21 +03:00
|
|
|
"test": "ava",
|
|
|
|
"watch": "ava --watch"
|
2018-01-27 06:41:05 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+ssh://git@github.com/wearebraid/vue-formulate.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"vue",
|
|
|
|
"form",
|
|
|
|
"forms",
|
|
|
|
"validation",
|
|
|
|
"vuex",
|
|
|
|
"validate"
|
|
|
|
],
|
|
|
|
"author": "Justin Schroeder <justin@wearebraid.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/wearebraid/vue-formulate/issues"
|
|
|
|
},
|
2018-01-31 01:21:21 +03:00
|
|
|
"homepage": "https://github.com/wearebraid/vue-formulate#readme",
|
|
|
|
"devDependencies": {
|
|
|
|
"ava": "^0.25.0",
|
|
|
|
"babel-core": "^6.26.0",
|
|
|
|
"babel-eslint": "^8.2.1",
|
|
|
|
"babel-loader": "^7.1.2",
|
|
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"babel-preset-env": "^1.6.1",
|
|
|
|
"babel-preset-stage-2": "^6.24.1",
|
|
|
|
"eslint": "^4.16.0",
|
|
|
|
"eslint-config-standard": "^11.0.0-beta.0",
|
|
|
|
"eslint-plugin-import": "^2.8.0",
|
|
|
|
"eslint-plugin-node": "^5.2.1",
|
|
|
|
"eslint-plugin-promise": "^3.6.0",
|
|
|
|
"eslint-plugin-standard": "^3.0.1",
|
|
|
|
"eslint-plugin-vue": "^4.2.0",
|
|
|
|
"vue-loader": "^13.7.0",
|
|
|
|
"vue-template-compiler": "^2.5.13",
|
|
|
|
"webpack": "^3.10.0"
|
|
|
|
},
|
|
|
|
"ava": {
|
|
|
|
"require": [
|
|
|
|
"babel-register",
|
|
|
|
"babel-polyfill"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"env"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-02-02 20:07:51 +03:00
|
|
|
"clone-deep": "^3.0.1",
|
2018-01-31 01:21:21 +03:00
|
|
|
"shortid": "^2.2.8"
|
|
|
|
}
|
2018-01-27 06:41:05 +03:00
|
|
|
}
|