-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·62 lines (62 loc) · 1.8 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
{
"name": "recal",
"version": "1.0.5",
"description": "A minimal, accessible React calendar component using modern CSS.",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"scripts": {
"start": "webpack-dev-server",
"build:docs": "webpack -p",
"build:lib": "rollup -c",
"build": "npm run build:lib && npm run build:docs",
"release": "npm run build:lib && npm publish",
"lib:watch": "babel src/lib -w -d esm --copy-files"
},
"keywords": [
"react",
"calendar",
"dates",
"datepicker",
"daterangepicker",
"accessibility",
"a11y"
],
"license": "MIT",
"dependencies": {
"date-fns": "^1.29.0"
},
"peerDependencies": {
"react": "^15.3.0 || ^16",
"react-dom": "^15.3.0 || ^16"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.37",
"@babel/core": "^7.0.0-beta.37",
"@babel/preset-env": "^7.0.0-beta.37",
"@babel/preset-react": "^7.0.0-beta.37",
"autoprefixer": "^8.2.0",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"css-loader": "^0.28.8",
"html-webpack-plugin": "^2.30.1",
"postcss-loader": "^2.1.3",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.5.1",
"rollup-plugin-uglify": "^3.0.0",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
},
"author": "Ruben Martinez Jr. <[email protected]>",
"homepage": "https://github.com/rubencodes/recal",
"repository": {
"type": "git",
"url": "[email protected]:rubencodes/recal.git"
}
}