availity-reactstrap-validation
Version:
Form validation helpers for reactstrap
147 lines (146 loc) • 4.39 kB
JSON
{
"name": "availity-reactstrap-validation",
"version": "2.7.1",
"author": "Evan Sharp <evan.sharp@availity.com>",
"description": "Form validation helpers for reactstrap",
"main": "lib/index.js",
"engines": {
"node": ">= 5.0.0"
},
"scripts": {
"ci": "npm run lint && cross-env BABEL_ENV=test nyc mocha-webpack",
"report-coverage": "coveralls < ./__test__/coverage/lcov.info",
"test:coverage": "cross-env BABEL_ENV=test nyc mocha-webpack && npm run cleanup",
"test": "mocha-webpack && npm run cleanup",
"test:watch": "mocha-webpack --watch && npm run cleanup",
"cleanup": "rimraf .nyc_output .tmp",
"start": "webpack-dev-server --config ./webpack.dev.config.js --watch",
"build:docs": "cross-env WEBPACK_BUILD=production webpack --config ./webpack.dev.config.js --colors",
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --colors",
"prebuild": "babel src --out-dir lib",
"lint": "eslint src",
"create-release": "npm test && sh ./scripts/release",
"publish-release": "npm test && sh ./scripts/publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/availity-reactstrap-validation.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist"
],
"keywords": [
"forms",
"validation",
"bootstrap",
"react",
"component",
"components",
"react-component",
"availity",
"ui"
],
"contributors": [
"Evan Sharp <evan.sharp@availity.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Availity/availity-reactstrap-validation/issues"
},
"homepage": "https://github.com/Availity/availity-reactstrap-validation",
"dependencies": {
"babel-runtime": "^6.26.0",
"classnames": "^2.2.6",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0",
"reactstrap": ">= 5.0.0-alpha.4"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"bootstrap": "^4.1.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.8",
"conventional-changelog-cli": "^1.3.22",
"conventional-recommended-bump": "^1.0.0",
"copy-webpack-plugin": "^3.0.1",
"coveralls": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.0",
"ejs": "^2.6.1",
"enzyme": "^2.8.2",
"eslint": "^4.18.2",
"eslint-config-availity": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^2.0.0",
"jsdom": "^13.1.0",
"json-loader": "^0.5.4",
"lodash.debounce": "^4.0.8",
"mocha": "^5.2.0",
"mocha-webpack": "^0.6.0",
"nyc": "^8.1.0",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-pure-render-mixin": "^15.5.2",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-helmet": "^5.0.3",
"react-highlight": "^0.9.0",
"react-prism": "3.2.1",
"react-router": "^2.0.1",
"react-test-renderer": "^15.5.4",
"react-transition-group": "^1.1.3",
"reactstrap": "^6.0.0",
"rimraf": "^2.5.4",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"static-site-generator-webpack-plugin": "^2.0.1",
"style-loader": "^0.16.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^3.1.11"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"sourceMap": false,
"instrument": false,
"report-dir": "./__test__/coverage"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
}
}