62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"name": "formsy-react",
|
|
"version": "1.0.0",
|
|
"description": "A form input builder and validator for React",
|
|
"keywords": [
|
|
"form",
|
|
"forms",
|
|
"formsy",
|
|
"react",
|
|
"react-component",
|
|
"validation"
|
|
],
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/christianalfoni/formsy-react",
|
|
"bugs": "https://github.com/christianalfoni/formsy-react/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/christianalfoni/formsy-react.git"
|
|
},
|
|
"author": "Christian Alfoni",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"main": "release/formsy-react.js",
|
|
"scripts": {
|
|
"build": "NODE_ENV=production webpack -p --config webpack.config.js && yarn run prepublish",
|
|
"examples": "webpack-dev-server --config examples/webpack.config.js --content-base examples",
|
|
"lint": "eslint src/**/*.js",
|
|
"prepublish": "rm -Rf ./lib && babel ./src/ -d ./lib/",
|
|
"test": "babel-node testrunner"
|
|
},
|
|
"dependencies": {
|
|
"form-data-to-object": "^0.2.0",
|
|
"prop-types": "^15.5.10"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.24.1",
|
|
"babel-loader": "^7.1.1",
|
|
"babel-preset-es2015": "^6.24.1",
|
|
"babel-preset-react": "^6.24.1",
|
|
"babel-preset-stage-2": "^6.24.1",
|
|
"eslint": "^3.19.0 || ^4.3.0",
|
|
"eslint-config-airbnb": "^15.1.0",
|
|
"eslint-plugin-import": "^2.7.0",
|
|
"eslint-plugin-jsx-a11y": "^5.1.1",
|
|
"eslint-plugin-react": "^7.1.0",
|
|
"jsdom": "^11.1.0",
|
|
"nodeunit": "^0.11.1",
|
|
"react": "^15.6.1",
|
|
"react-addons-pure-render-mixin": "^15.6.0",
|
|
"react-addons-test-utils": "^15.6.0",
|
|
"react-dom": "^15.6.1",
|
|
"sinon": "^3.2.0",
|
|
"webpack": "^3.5.4",
|
|
"webpack-dev-server": "^2.7.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^15.6.1",
|
|
"react-dom": "^15.6.1"
|
|
}
|
|
}
|