PluginProbe
Booking Calendar / 11.1
Booking Calendar v11.1
11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 10.11.2 10.11.3 All 202 releases
booking / vendors / simplebar / package.json

package.json in Booking Calendar 11.1, at vendors/simplebar/package.json

56 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "version": "6.3.1",
3 "name": "simplebar",
4 "title": "SimpleBar.js",
5 "description": "Scrollbars, simpler.",
6 "files": [
7 "dist",
8 "src",
9 "README.md"
10 ],
11 "author": "Adrien Denat from a fork by Jonathan Nicol",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/grsmto/simplebar.git",
15 "directory": "packages/simplebar"
16 },
17 "main": "./dist/index.cjs",
18 "module": "./dist/index.mjs",
19 "types": "./dist/index.d.ts",
20 "unpkg": "./dist/simplebar.min.js",
21 "style": "./dist/simplebar.min.css",
22 "exports": {
23 ".": {
24 "import": "./dist/index.mjs",
25 "require": "./dist/index.cjs"
26 },
27 "./dist/simplebar.min.css": "./dist/simplebar.min.css"
28 },
29 "homepage": "https://grsmto.github.io/simplebar/",
30 "bugs": "https://github.com/grsmto/simplebar/issues",
31 "license": "MIT",
32 "scripts": {
33 "build": "rollup -c && cp ../simplebar-core/src/simplebar.css dist/simplebar.css && minify dist/simplebar.css > dist/simplebar.min.css",
34 "dev": "rollup -c -w --environment BUILD:development",
35 "test": "jest -c jest-unit.config.js",
36 "version": "yarn build",
37 "precommit": "lint-staged"
38 },
39 "dependencies": {
40 "simplebar-core": "^1.3.1"
41 },
42 "devDependencies": {
43 "@babel/plugin-transform-runtime": "^7.19.6",
44 "intern": "^4.4.2",
45 "minify": "^3.0.5",
46 "promise": "^8.0.2"
47 },
48 "lint-staged": {
49 "*.{js,jsx,json}": [
50 "prettier-eslint --write",
51 "git add"
52 ]
53 },
54 "gitHead": "3885152e72af29662d613dca32f7b76d4120f184"
55 }
56