Javier Marquez
2018-07-24 87a4ca3331eb027040b508968f5b279950afcae4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
  "name": "react-datetime",
  "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",
    "DateTime.d.ts",
    "src",
    "css",
    "dist"
  ],
  "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/ && 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: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",
    "react-component",
    "datepicker",
    "timepicker",
    "datetimepicker",
    "datetime"
  ],
  "author": "Javier Marquez",
  "license": "MIT",
  "peerDependencies": {
    "moment": ">=2.16.0",
    "react": ">=0.13",
    "react-dom": ">=0.13"
  },
  "devDependencies": {
    "@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.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",
    "gulp-insert": "^0.4.0",
    "gulp-plumber": "^1.1.0",
    "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": "^15.5.0",
    "react-addons-test-utils": ">=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",
    "webpack-dev-server": "^1.7.0",
    "webpack-stream": "^3.2.0"
  },
  "dependencies": {
    "create-react-class": "^15.5.2",
    "object-assign": "^3.0.0",
    "prop-types": "^15.5.7",
    "react-onclickoutside": "^6.5.0"
  },
  "pre-commit": [
    "notify-pre-commit-hook",
    "lint",
    "test:all"
  ]
}