-
-
Notifications
You must be signed in to change notification settings - Fork 734
/
package.json
104 lines (104 loc) · 2.94 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
98
99
100
101
102
103
104
{
"name": "react-day-picker",
"version": "7.0.7",
"description": "Flexible date picker component for React",
"main": "DayPicker.js",
"style": "lib/style.css",
"types": "./types/index.d.ts",
"files": [
"DayPicker.js",
"DayPickerInput.js",
"lib",
"moment.js",
"utils.js",
"types"
],
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "rimraf coverage lib",
"lint": "eslint src test",
"dtslint": "dtslint types",
"test": "jest",
"check": "npm run lint && npm run dtslint && npm run test",
"prerelease": "npm run check && npm run build",
"build": "rimraf lib && npm run build:node && npm run build:production && npm run build:development",
"build:node": "babel ./src -d ./lib/src --source-maps && npm run build:css",
"build:development": "NODE_ENV=development webpack",
"build:production": "NODE_ENV=production webpack -p",
"build:css": "postcss src/style.css --use autoprefixer -d lib/ --no-map"
},
"repository": {
"type": "git",
"url": "https://github.com/gpbl/react-day-picker.git"
},
"keywords": [
"react",
"react-component",
"component",
"calendar",
"date-picker",
"datepicker",
"date",
"picker",
"moment",
"momentjs"
],
"author": "Giampaolo Bellavite <io@gpbl.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpbl/react-day-picker/issues"
},
"homepage": "https://react-day-picker.js.org",
"peerDependencies": {
"react": "~0.13.x || ~0.14.x || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"autoprefixer": "7.2.3",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.1.2",
"babel-loader": "7.1.2",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-export-extensions": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.12",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"cheerio": "1.0.0-rc.2",
"codecov": "3.0.0",
"dtslint": "0.2.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.14.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.4.0",
"eslint-plugin-react": "7.5.1",
"gh-pages": "1.1.0",
"husky": "0.14.3",
"jest": "22.0.4",
"jest-enzyme": "4.0.2",
"jest-junit-reporter": "1.1.0",
"moment": "2.20.1",
"null-loader": "0.1.1",
"postcss-cli": "4.1.1",
"prettier": "1.9.2",
"raf": "3.4.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-test-renderer": "16.2.0",
"rimraf": "2.6.2",
"typescript": "2.6.2",
"webpack": "3.10.0"
},
"dependencies": {
"object-assign": "^4.1.1",
"prop-types": "^15.6.0"
}
}