-
Notifications
You must be signed in to change notification settings - Fork 155
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "vanillajs-datepicker",
"version": "1.3.4",
"description": "A vanilla JavaScript remake of bootstrap-datepicker for Bulma and other CSS frameworks",
"type": "module",
"module": "js/main.js",
"exports": {
".": "./js/main.js",
"./Datepicker": "./js/Datepicker.js",
"./DateRangePicker": "./js/DateRangePicker.js",
"./locales/*": "./js/i18n/locales/*.js",
"./sass/*": "./sass/*",
"./css/*": "./dist/css/*"
},
"scripts": {
"build:js": "rollup -c",
"build:locales": "node scripts/build-locales.js",
"build:css": "node scripts/build-css.js",
"build": "npm run build:js && npm run build:locales && npm run build:css",
"minify:js": "node scripts/minify-js.js",
"minify:css": "node scripts/minify-css.js",
"minify": "npm run minify:js && npm run minify:css",
"make:js": "npm run build:js && npm run minify:js",
"make:css": "npm run build:css && npm run minify:css",
"make": "npm run build && npm run minify",
"test:lib": "mocha test/preconditional/lib",
"test:classes": "mocha test/preconditional/main-classes",
"test": "npm run test:lib && npm run test:classes",
"docsify": "docsify serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mymth/vanillajs-datepicker.git"
},
"keywords": [
"datepicker",
"bulma",
"bootstrap",
"vanilla",
"javascript",
"scss"
],
"author": "Hidenao Miyamoto",
"license": "MIT",
"bugs": {
"url": "https://github.com/mymth/vanillajs-datepicker/issues"
},
"homepage": "https://github.com/mymth/vanillajs-datepicker#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"autoprefixer": "^10.4.0",
"bootstrap": "^5.1.3",
"bootstrap4": "npm:bootstrap@^4.6.1",
"bulma": "^0.9.3",
"bulma-tooltip": "^3.0.2",
"cssnano": "^6.0.1",
"docsify-cli": "^4.4.3",
"foundation-sites": "^6.7.4",
"jsdom": "^22.0.0",
"mocha": "^10.2.0",
"postcss": "^8.4.5",
"postcss-prettify": "^0.3.4",
"rollup": "^3.12.1",
"sass": "^1.45.1",
"simulant": "^0.2.2",
"sinon": "^15.0.1",
"terser": "^5.10.0",
"unexpected": "^13.1.0"
}
}