Cody Greene
2016-10-18 75c558e8e1d659e134e85aadd3f818bebd5ae12c
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
{
  "name": "react-datetime",
  "version": "2.6.0",
  "description": "A lightweight but complete datetime picker React.js component.",
  "homepage": "https://github.com/arqex/react-datetime",
  "repository": {
    "type": "git",
    "url": "https://github.com/arqex/react-datetime"
  },
  "main": "./DateTime.js",
  "files": [
    "./DateTime.js",
    "./react-datetime.d.ts",
    "./src",
    "./css",
    "./dist"
  ],
  "types": "./react-datetime.d.ts",
  "scripts": {
    "build:win": "./node_modules/.bin/gulp.cmd",
    "build:mac": "./node_modules/.bin/gulp",
    "test": "node node_modules/mocha/bin/mocha tests",
    "test:watch": "node node_modules/mocha/bin/mocha --watch tests",
    "dev": "webpack-dev-server --config example/webpack.config.js --devtool eval --progress --colors --hot --content-base example",
    "lint": "./node_modules/.bin/eslint src/ DateTime.js"
  },
  "keywords": [
    "react",
    "react-component",
    "datepicker",
    "timepicker",
    "datetimepicker",
    "datetime"
  ],
  "author": "Javier Marquez",
  "license": "MIT",
  "peerDependencies": {
    "react": ">=0.13",
    "react-dom": ">=0.13",
    "moment": ">=2.8.1"
  },
  "devDependencies": {
    "eslint": "^3.1.0",
    "gulp": "^3.9.0",
    "gulp-insert": "^0.4.0",
    "gulp-uglify": "^1.2.0",
    "gulp-webpack": "^1.5.0",
    "gulp-sourcemaps": "^1.6.0",
    "jsdom": "^7.0.2",
    "mocha": "^2.2.5",
    "moment": "2.14.1",
    "pre-commit": "^1.1.3",
    "react": ">=0.13",
    "react-addons-test-utils": ">=0.13",
    "react-dom": "15.2.1",
    "react-tools": "^0.13.2",
    "webpack": "^1.5.1",
    "webpack-dev-server": "^1.7.0"
  },
  "dependencies": {
    "object-assign": "^3.0.0",
    "react-onclickoutside": "^4.1.0"
  },
  "pre-commit": [
    "lint",
    "test"
  ]
}