forked from wojtekmaj/react-date-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.49 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-date-picker",
"version": "6.3.0",
"description": "An input component for picking dates for your React application.",
"main": "build/entry.js",
"types": "./index.d.ts",
"es6": "src/entry.js",
"scripts": {
"build": "npm run build-js && npm run build-styles && npm run copy-styles",
"build-js": "babel src -d build --ignore **/__tests__",
"build-styles": "lessc ./src/DatePicker.less ./src/DatePicker.css",
"copy-styles": "node ./copy-styles.js",
"prepublishOnly": "npm run build",
"test": "npm run test-eslint && npm run test-jest",
"test-eslint": "eslint ./src",
"test-jest": "jest",
"test-jest-coverage": "jest --coverage"
},
"jest": {
"collectCoverageFrom": [
"**/src/**.{js,jsx}",
"!**/src/entry.js"
]
},
"keywords": [
"calendar",
"date",
"date-picker",
"month-picker",
"react"
],
"author": {
"name": "Wojciech Maj",
"email": "[email protected]"
},
"contributors": [
{
"name": "Joe Bourne",
"email": "[email protected]"
},
{
"name": "Juan Caicedo",
"email": "[email protected]"
},
{
"name": "Kevin Kipp",
"email": "[email protected]"
},
{
"name": "Marco Fugaro",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"detect-element-overflow": "^1.1.0",
"lodash.once": "^4.1.1",
"merge-class-names": "^1.1.1",
"prop-types": ">=15.5",
"react": ">=15.5",
"react-calendar": "^2.3.0",
"react-dom": ">=15.5"
},
"devDependencies": {
"@types/react": "^16.0.22",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.2.1",
"less": "^2.7.3",
"react-test-renderer": "^16.1.0"
},
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"build/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/wojtekmaj/react-date-picker.git"
}
}