material-ui-pickers-fork
Version:
React components, that implements material design pickers for material-ui v1
140 lines • 4.77 kB
JSON
{
"name": "material-ui-pickers-fork",
"version": "1.0.0-rc.100",
"private": false,
"description": "React components, that implements material design pickers for material-ui v1",
"main": "./index.js",
"module": "./index.es.js",
"types": "src/index.d.ts",
"keywords": [
"material-ui",
"pickers",
"material-ui-pickers",
"datepicker",
"timepicker",
"date-picker",
"time-picker",
"react",
"react-component",
"material design"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dmtrKovalenko/material-ui-pickers/issues"
},
"homepage": "https://material-ui-pickers.firebaseapp.com/",
"repository": {
"type": "git",
"url": "https://github.com/dmtrKovalenko/material-ui-pickers"
},
"author": {
"name": "Dmitriy Kovalenko",
"email": "dmtr.kovalenko@outlook.com"
},
"peerDependencies": {
"classnames": "^2.2.5",
"@material-ui/core": "^1.0.0-rc.0",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"optionalDependenciesgca": {
"moment": "^2.19.2",
"date-fns": "2.0.0-alpha.7",
"luxon": "^1.0.0"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.54",
"lodash.throttle": "^4.1.1",
"react-event-listener": "^0.6.2",
"react-text-mask": "=5.4.1",
"react-transition-group": "^2.4.0",
"recompose": "^0.28.0"
},
"size-limit": [
{
"path": "build/dist/material-ui-pickers.cjs.js",
"limit": "30 KB"
}
],
"scripts": {
"test": "npm run test:date-fns && npm run test:luxon && npm run test:moment",
"all-tests": "jest && npm run typescript",
"test:moment": "cross-env UTILS=moment npm run all-tests",
"test:date-fns": "cross-env UTILS=date-fns npm run all-tests",
"test:luxon": "cross-env UTILS=luxon npm run all-tests",
"typescript": "tsc -p tsconfig.json",
"start": "rollup --config --watch",
"prebuild": "rimraf build",
"build:copy": "node copy.js",
"build:bundle": "rollup --config",
"build:es2015": "cross-env NODE_ENV=cjs babel ./src --out-dir ./build",
"build:es2015modules": "cross-env NODE_ENV=esm babel ./src/index.js --out-file ./build/index.es.js",
"build": "npm run build:bundle && npm run build:es2015modules && npm run build:es2015 && npm run build:copy",
"ci": "npm run test && codecov && npm run lint && npm run build && size-limit",
"prerelease": "npm run ci",
"release": "np --no-publish --any-branch",
"postrelease": "npm run build && npm publish build",
"lint": "eslint ./src/**/*.js*",
"lint-fix": "npm run lint -- --fix",
"postinstall": "node -e \"console.log('\\u001b[35m\\u001b[1mHave you installed one of peer libraries?\\u001b[22m\\u001b[39m\\n > date-fns \\n > luxon \\n > moment')\""
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.54",
"@babel/core": "^7.0.0-beta.54",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.54",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.54",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.54",
"@babel/plugin-transform-runtime": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"@babel/preset-react": "^7.0.0-beta.54",
"@material-ui/core": "^1.4.1",
"@types/classnames": "^2.2.6",
"@types/jest": "^22.2.3",
"@types/jss": "^9.5.4",
"@types/luxon": "^0.5.3",
"@types/moment": "^2.13.0",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.4.6",
"@types/react-event-listener": "^0.4.5",
"@types/recompose": "^0.26.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^21.2.0",
"classnames": "^2.2.5",
"codecov": "^3.0.4",
"cross-env": "^5.2.0",
"date-fns": "2.0.0-alpha.7",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-react-adapter-future": "^1.1.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"fs-extra": "^4.0.2",
"full-icu": "^1.2.1",
"glob": "^7.1.2",
"jest": "^21.2.1",
"luxon": "^1.3.2",
"moment": "^2.22.1",
"np": "^2.20.1",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-size-snapshot": "^0.6.0",
"rollup-plugin-uglify": "^4.0.0",
"size-limit": "^0.18.5",
"typescript": "^2.9.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup.js",
"testRegex": "__tests__/.*\\.test\\.js$",
"collectCoverage": true
}
}