forked from mymth/vanillajs-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2 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
{
"name": "vanillajs-datepicker",
"version": "1.1.4",
"description": "A vanilla JavaScript remake of bootstrap-datepicker for Bulma and other CSS frameworks",
"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/"
},
"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 -r esm test/unit/lib",
"test:unit": "mocha -r esm test/unit",
"test": "npm run test:lib && npm run test:unit",
"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": "^11.0.1",
"autoprefixer": "^9.8.6",
"bootstrap4": "npm:bootstrap@^4.5.3",
"cssnano": "^5.0.8",
"docsify-cli": "^4.4.2",
"esm": "^3.2.25",
"jsdom": "^16.4.0",
"mocha": "^8.2.1",
"postcss": "^8.2.1",
"postcss-node-sass": "^1.1.1",
"postcss-scss": "^3.0.5",
"rollup": "^2.35.1",
"simulant": "^0.2.2",
"sinon": "^9.2.2",
"uglify-es": "^3.3.9",
"unexpected": "^12.0.0"
}
}