-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.28 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.28 KB
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
{
"name": "binary-booking-calendar",
"version": "0.2.1",
"license": "MIT",
"private": false,
"main": "dist/binaryBookingCalendar.js",
"repository": {
"type": "git",
"url": "git+https://github.com/binary-butterfly/binaryBookingCalendar.git"
},
"jsnext:main": "src/js/Calendar.js",
"files": [
"dist",
"src/js"
],
"scripts": {
"prepublishOnly": "npm-run-all test build:prod",
"test": "jest",
"build:dev": "rollup -c rollup.config.js",
"build:prod": "NODE_ENV=production rollup -c rollup.config.js",
"browse": "browser-sync start --s --index src/html/index.html --files dist/* --no-ui",
"watch": "rollup -c rollup.config.js -w",
"start": "npm-run-all --parallel watch browse"
},
"jest": {
"verbose": true,
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"outputDirectory": "reports/"
},
"devDependencies": {
"@babel/core": "^7.10",
"@babel/preset-env": "^7.10",
"@babel/preset-react": "^7.10",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"babel-loader": "^8.2.2",
"browser-sync": "^3.0.2",
"css-loader": "^5.2.6",
"jest": "^30.2.0",
"jest-junit": "^13.0.0",
"npm-run-all": "^4.1.5",
"react-dom": "^17.0.2",
"rollup": "^3.29.5",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.48.0"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"IE >= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/binary-butterfly/binaryBookingCalendar/issues"
},
"peerDependencies": {
"prop-types": "^15.8.1",
"react": "^17.0.2"
},
"homepage": "https://github.com/binary-butterfly/binaryBookingCalendar#readme",
"description": "A react component containing a calendar for bookings with date and time inputs",
"keywords": [
"react",
"calendar"
],
"author": "binary butterfly GmbH"
}