Javier Marquez
2018-07-24 87a4ca3331eb027040b508968f5b279950afcae4
package.json
@@ -1,31 +1,33 @@
{
  "name": "react-datetime",
  "version": "2.8.4",
  "description": "A lightweight but complete datetime picker React.js component.",
  "version": "2.15.0",
  "description": "A lightweight but complete datetime picker React.js component",
  "homepage": "https://github.com/YouCanBookMe/react-datetime",
  "repository": {
    "type": "git",
    "url": "https://github.com/YouCanBookMe/react-datetime"
  },
  "main": "./DateTime.js",
  "typings": "./DateTime.d.ts",
  "files": [
    "DateTime.js",
    "react-datetime.d.ts",
    "typings/index.d.ts",
    "DateTime.d.ts",
    "src",
    "css",
    "dist"
  ],
  "types": "./typings/index.d.ts",
  "scripts": {
    "build:mac": "./node_modules/.bin/gulp",
    "build:win": "./node_modules/.bin/gulp.cmd",
    "dev": "./node_modules/.bin/webpack-dev-server --config example/webpack.config.js --devtool eval --progress --colors --hot --content-base example",
    "lint": "./node_modules/.bin/eslint src/ DateTime.js",
    "test": "node node_modules/mocha/bin/mocha tests",
    "test:all": "npm run test:typings && npm run test",
    "lint": "./node_modules/.bin/eslint src/ DateTime.js test/ && echo 'Linting OK! ðŸ’ª'",
    "notify-pre-commit-hook": "echo '### Starting pre-commit hook ðŸ¦„'",
    "test": "./node_modules/.bin/jest",
    "test:typings": "./node_modules/.bin/tsc -p ./typings",
    "test:watch": "node node_modules/mocha/bin/mocha --watch tests"
    "test:snapshot": "./node_modules/.bin/jest snapshot",
    "test:snapshot:update": "./node_modules/.bin/jest snapshot --updateSnapshot",
    "test:all": "echo 'Running tests...' && npm run test:typings && npm run test && echo 'All tests passed! ðŸ¤˜'",
    "test:watch": "./node_modules/.bin/jest --watch"
  },
  "keywords": [
    "react",
@@ -43,11 +45,15 @@
    "react-dom": ">=0.13"
  },
  "devDependencies": {
    "@types/react": "^0.14.49",
    "@types/react": ">=15",
    "babel-core": "^6.22.1",
    "babel-jest": "^18.0.0",
    "babel-loader": "^6.2.1",
    "babel-plugin-transform-remove-strict-mode": "0.0.2",
    "babel-preset-es2015": "^6.22",
    "babel-preset-es2015": "^6.22.0",
    "babel-preset-react": "^6.22.0",
    "enzyme": "^3.0.0",
    "enzyme-adapter-react-15": "^1.0.5",
    "eslint": "^3.1.0",
    "gulp": "^3.9.0",
    "gulp-babel": "^6.1",
@@ -56,13 +62,16 @@
    "gulp-rename": "^1.2.2",
    "gulp-sourcemaps": "^2.4.0",
    "gulp-uglify": "^1.2.0",
    "jest": "^18.1.0",
    "jest-cli": "^18.1.0",
    "jsdom": "^7.0.2",
    "mocha": "^3.2.0",
    "moment": ">=2.16.0",
    "pre-commit": "^1.1.3",
    "react": ">=0.13",
    "react": "^15.5.0",
    "react-addons-test-utils": ">=0.13",
    "react-dom": ">=0.13",
    "react-dom": "^15.5.0",
    "react-test-renderer": "^15.5.0",
    "through2": "^2.0.3",
    "typescript": "^2.0.10",
    "webpack": "^2.2.1",
@@ -70,10 +79,13 @@
    "webpack-stream": "^3.2.0"
  },
  "dependencies": {
    "create-react-class": "^15.5.2",
    "object-assign": "^3.0.0",
    "react-onclickoutside": "^4.1.0"
    "prop-types": "^15.5.7",
    "react-onclickoutside": "^6.5.0"
  },
  "pre-commit": [
    "notify-pre-commit-hook",
    "lint",
    "test:all"
  ]