forked from themesberg/flowbite-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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": "flowbite-datepicker",
"version": "1.2.6",
"description": "A Tailwind CSS powered datepicker built with vanilla JavaScript and Flowbite",
"module": "js/main.js",
"exports": {
".": "./js/main.js",
"./Datepicker": "./js/Datepicker.js",
"./DateRangePicker": "./js/DateRangePicker.js",
"./locales/*": "./js/i18n/locales/*.js",
"./locales/": "./js/i18n/locales/"
},
"repository": {
"type": "git",
"url": "https://github.com/themesberg/tailwind-datepicker"
},
"homepage": "https://flowbite.com/docs/plugins/datepicker/",
"scripts": {
"build:js": "rollup -c",
"build:locales": "node scripts/build-locales.js",
"build": "npm run build:js && npm run build:locales && npx tailwindcss -o tailwind.css",
"minify:js": "node scripts/minify-js.js",
"minify": "npm run minify:js",
"make:js": "npm run build:js && npm run minify:js",
"make": "npm run build && npm run minify",
"test:lib": "mocha -r esm test/unit/lib",
"test:unit": "mocha -r esm test/unit",
"test": "npm run test:lib && npm run test:unit"
},
"keywords": [
"datepicker",
"tailwind",
"vanilla",
"javascript"
],
"author": "Flowbite & Hidenao Miyamoto",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"autoprefixer": "^10.4.0",
"bootstrap4": "npm:bootstrap@^4.5.3",
"bootstrap5": "npm:bootstrap@^5.0.1",
"bulma": "^0.9.1",
"bulma-tooltip": "^3.0.2",
"cssnano": "^4.1.10",
"docsify-cli": "^4.4.2",
"esm": "^3.2.25",
"foundation-sites": "^6.6.3",
"jsdom": "^16.4.0",
"mocha": "^8.2.1",
"postcss": "^8.4.1",
"rollup": "^2.35.1",
"simulant": "^0.2.2",
"sinon": "^9.2.2",
"tailwindcss": "^3.3.5",
"uglify-es": "^3.3.9",
"unexpected": "^12.0.0"
},
"dependencies": {
"flowbite": "^2.0.0"
}
}