@degjs/form-validation
Version:
A modular form validation plugin, free of third-party dependencies and built on top of native HTML5 validation.
84 lines (83 loc) • 2.42 kB
JSON
{
"name": "@degjs/form-validation",
"version": "3.1.1",
"description": "A modular form validation plugin, free of third-party dependencies and built on top of native HTML5 validation.",
"keywords": [
"DEGJS",
"formValidation",
"forms",
"validation"
],
"author": {
"name": "Aaron Ladage",
"email": "aladage@degdigital.com",
"url": "http://aaronladage.com"
},
"contributors": [
{
"name": "Ryan Heap",
"email": "rheap@degdigital.com"
},
{
"name": "Anna Scheuler",
"email": "scheul93@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DEGJS/formValidation.git"
},
"files": [
"src"
],
"main": "src/formValidation.js",
"bugs": "https://github.com/DEGJS/formValidation/issues",
"dependencies": {
"@degjs/dom-utils": "^3.0.0",
"@degjs/object-utils": "^3.0.0",
"@degjs/scroll-to": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@degjs/form-field-appender": "^2.0.0",
"@degjs/form-validation": "^3.1.0",
"@degjs/form-validation-email": "^2.0.0",
"@degjs/form-validation-min-max-length": "^2.0.0",
"@degjs/form-validation-pattern": "^2.0.0",
"@degjs/form-validation-required": "^2.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"test": "jest",
"build-demo-bundles": "node -e \"require('./demo/build-bundles')\"",
"build-demo": "npm run-script build-demo-bundles && rsync -av --exclude='js/*' demo/src/ demo/dist"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"bracketSpacing": false
}
}