forked from gpbl/react-day-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.06 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
105
106
{
"name": "react-day-picker",
"version": "7.2.4",
"description": "Flexible date picker component for React",
"main": "DayPicker.js",
"style": "lib/style.css",
"types": "./types/index.d.ts",
"files": [
"DayPicker.js",
"DayPickerInput.js",
"DayPickerInput.d.ts",
"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": "cross-env NODE_ENV=development webpack",
"build:production": "cross-env 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 <[email protected]>",
"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": "^8.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"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.15",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"cheerio": "^1.0.0-rc.2",
"codecov": "^3.0.4",
"cross-env": "^5.2.0",
"dtslint": "~0.3.0",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"gh-pages": "^1.2.0",
"husky": "~0.14.3",
"jest": "^23.5.0",
"jest-enzyme": "^6.0.3",
"jest-junit-reporter": "^1.1.0",
"moment": "^2.22.2",
"null-loader": "~0.1.1",
"postcss-cli": "^5.0.0",
"prettier": "^1.14.2",
"raf": "^3.4.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"rimraf": "^2.6.2",
"typescript": "^3.0.1",
"webpack": "^3.10.0"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}