This repository has been archived by the owner on Nov 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-dates-range-picker",
"version": "v0.1.0",
"description": "Small, stateless date / date range picker for react-dates.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"scripts": {
"flow": "flow",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src __test__",
"compile": "babel -d lib src",
"compile:watch": "babel -w -d lib src",
"clean": "rm -rf lib",
"prepublish": "npm run clean && npm run compile"
},
"files": [
"*.md",
"__test__",
"LICENSE",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RafalFilipek/react-dates-range-picker.git"
},
"bugs": {
"url": "https://github.com/RafalFilipek/react-dates-range-picker/issues"
},
"author": "Rafał Filipek <rafal.filipek@gmail.com>",
"license": "MIT",
"keywords": [
"date",
"date-picker",
"date-range-picker",
"date-range",
"react-dates"
],
"jest": {
"collectCoverage": true,
"coverageDirectory": "./.coverage",
"unmockedModulePathPatterns": [
"node_modules/react/",
"node_modules/enzyme/"
]
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^2.7.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype-errors": "^2.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"flow-typed": "^2.0.0",
"jest": "^18.1.0",
"publish-please": "^2.2.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"release": "^1.1.2"
},
"dependencies": {
"moment": "^2.17.1",
"react": "^15.4.2",
"react-addons-shallow-compare": "^15.4.2",
"react-dates": "^5.2.0",
"react-moment-proptypes": "^1.2.1"
}
}