availity-reactstrap-validation
Version:
Form validation helpers for reactstrap
139 lines (138 loc) • 4.15 kB
JSON
{
"name": "availity-reactstrap-validation",
"version": "1.0.2",
"author": "Evan Sharp <evan.sharp@availity.com>",
"description": "Form validation helpers for reactstrap",
"main": "lib/index.js",
"engines": {
"node": ">= 5.0.0",
"npm": "^3.0.0"
},
"scripts": {
"ci": "cross-env BABEL_ENV=test nyc mocha-webpack | coveralls",
"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 --progress --colors",
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --progress --colors",
"prebuild": "babel src --out-dir lib",
"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",
"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": {
"classnames": "^2.2.3",
"lodash.get": "^4.4.2",
"lodash.isnumber": "^3.0.3",
"lodash.isregexp": "^4.0.1",
"lodash.isstring": "^4.0.1",
"lodash.isundefined": "^3.0.1",
"lodash.set": "^4.3.2",
"lodash.tonumber": "^4.0.3",
"moment": "^2.14.1",
"reactstrap": "^2.5.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^1.1.0",
"babel-polyfill": "^6.13.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.0.0-alpha.3",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"cheerio": "^0.20.0",
"clean-webpack-plugin": "^0.1.8",
"conventional-changelog-cli": "^1.1.1",
"conventional-recommended-bump": "^0.2.0",
"copy-webpack-plugin": "^3.0.1",
"coveralls": "^2.11.9",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"ejs": "^2.4.1",
"enzyme": "^2.4.1",
"eslint": "^3.3.1",
"eslint-config-availity": "github:availity/eslint-config-availity#feature/react",
"eslint-plugin-react": "^5.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^3.0.0",
"jasmine-core": "^2.4.1",
"jsdom": "^9.4.2",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"mocha-webpack": "^0.6.0",
"nyc": "^8.1.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.12",
"raw-loader": "^0.5.1",
"react": "^15.2.1",
"react-addons-pure-render-mixin": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-addons-transition-group": "^15.3.1",
"react-dom": "^15.2.1",
"react-helmet": "^3.0.1",
"react-highlight": "^0.8.0",
"react-prism": "3.2.1",
"react-router": "^2.0.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"static-site-generator-webpack-plugin": "^2.0.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"sourceMap": false,
"instrument": false,
"report-dir": "./__test__/coverage"
}
}