forked from Hacker0x01/react-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.52 KB
/
package.json
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
{
"author": "HackerOne",
"name": "react-datepicker",
"description": "A simple and reusable datepicker component for React",
"version": "0.10.1",
"license": "MIT",
"homepage": "https://github.com/Hacker0x01/react-datepicker",
"main": "dist/react-datepicker.min.js",
"engines": {
"node": ">= 0.10 < 0.12"
},
"keywords": [
"react",
"datepicker",
"calendar",
"date",
"react-component"
],
"repository": {
"type": "git",
"url": "git://github.com/Hacker0x01/react-datepicker.git"
},
"bugs": {
"url": "https://github.com/Hacker0x01/react-datepicker/issues"
},
"devDependencies": {
"babel": "^5.6.4",
"babel-core": "^5.6.4",
"babel-jest": "^5.3.0",
"babel-loader": "^5.1.4",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-sass": "0.9.2",
"grunt-contrib-watch": "0.6.1",
"grunt-jsxhint": "0.5.0",
"grunt-scss-lint": "^0.3.4",
"grunt-webpack": "^1.0.8",
"jest-cli": "0.4.0",
"lodash": "^3.3.0",
"react": ">=0.12 <0.14",
"react-tools": ">=0.12 <0.14",
"webpack": "^1.7.2",
"webpack-dev-server": "^1.7.0"
},
"peerDependencies": {
"react": ">=0.12 <0.14"
},
"dependencies": {
"moment": "^2.8",
"tether": "^1.0.1",
"react-onclickoutside": "0.2.2"
},
"scripts": {
"test": "grunt travis --verbose"
},
"jest": {
"testDirectoryName": "test",
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}