vfg-field-object
Version:
A vue-form-generator field to handle objects
131 lines (130 loc) • 4.06 kB
JSON
{
"name": "vfg-field-object",
"description": "A vue-form-generator field to handle objects",
"version": "0.0.4",
"license": "MIT",
"main": "dist/vfg-field-object.common.js",
"module": "dist/vfg-field-object.esm.js",
"unpkg": "dist/vfg-field-object.js",
"jsdelivr": "dist/vfg-field-object.js",
"files": [
"src",
"dist/*.js"
],
"author": "Gwenael Pluchon",
"repository": {
"type": "git",
"url": "https://github.com/gwenaelp/vfg-field-object.git"
},
"bugs": {
"url": "https://github.com/gwenaelp/vfg-field-object/issues"
},
"homepage": "https://github.com/gwenaelp/vfg-field-object#readme",
"keywords": [
"vue",
"vue-component",
"vue-library"
],
"engines": {
"node": ">=8.9.0"
},
"scripts": {
"build": "npm run build:cjs && npm run build:es && npm run build:umd:dev && npm run build:umd:prod",
"build:cjs": "rollup -c --environment TARGET:cjs",
"build:es": "rollup -c --environment TARGET:esm",
"build:umd:dev": "rollup -c --environment TARGET:umd-dev",
"build:umd:prod": "rollup -c --environment TARGET:umd-prod",
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook:build": "build-storybook -c .storybook -o docs/dist/stories",
"precommit": "lint-staged",
"cz": "git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "npm run lint && jest --verbose --coverage",
"test:update": "jest --verbose --updateSnapshot",
"test:watch": "jest --verbose --watchAll --notify",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^5.2.3",
"@semantic-release/changelog": "^1.0.0",
"@semantic-release/git": "^2.0.1",
"@semantic-release/github": "^3.0.1",
"@semantic-release/npm": "^2.6.1",
"@storybook/vue": "^3.3.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-jest": "^22.0.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-module-resolver": "^3.0.0",
"babel-preset-vue-app": "^2.0.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.14.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-prettier": "2.4.0",
"eslint-plugin-vue": "^4.0.1",
"husky": "^0.14.3",
"jest": "^22.0.4",
"jest-serializer-html": "^5.0.0",
"jest-serializer-vue": "^0.3.0",
"jest-vue-preprocessor": "^1.3.1",
"lint-staged": "^6.0.0",
"lodash": "^4.17.4",
"prettier": "^1.9.2",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-license": "^0.5.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-plugin-vue": "^3.0.0",
"semantic-release": "^12.2.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglify-es": "^3.3.4",
"vue": "^2.5.13",
"vue-jest": "^1.4.0",
"vue-loader": "^13.6.2",
"vue-template-compiler": "^2.5.13"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"getLastRelease": "@semantic-release/npm",
"publish": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"dependencies": {
"vue-form-generator": "^2.2.1"
}
}