forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.35 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
{
"name": "flatpickr",
"version": "2.2.3",
"description": "A lightweight, powerful javascript datetime picker",
"scripts": {
"build": "parallelshell \"npm run build-all-scripts\" \"npm run build-all-styles\"",
"build-all-scripts": "parallelshell \"npm run build-script\" \"npm run build-min-script\" \"npm run build-l10n\"",
"build-all-styles": "parallelshell \"npm run build-style\" \"npm run build-themes\" && npm run build-rtl",
"build-script": "babel src/flatpickr.js --out-file dist/flatpickr.js",
"build-min-script": "babel src/flatpickr.js | uglifyjs --screw-ie8 --compress --comments --mangle > dist/flatpickr.min.js",
"build-l10n": "babel src/l10n --out-dir dist/l10n",
"build-style": "stylus --compress --include src/style < ./src/style/flatpickr.styl > ./dist/flatpickr.min.css",
"build-themes": "stylus --out dist/themes --compress src/style/themes",
"build-rtl": "rtlcss -d ./dist/themes ./dist/rtl/themes && rtlcss dist/flatpickr.min.css dist/rtl/flatpickr.min.css",
"dev-script": "onchange \"src/flatpickr.js\" -- npm run build-script",
"dev-style": "parallelshell \"onchange \"src/style/flatpickr_base.styl\" \"src/style/flatpickr.styl\" -- npm run build-style\" \"npm run build-themes -- --watch\"",
"dev": "parallelshell \"npm run dev-script\" \"npm run dev-style\"",
"livereload": "livereload \"dist\"",
"serve": "parallelshell \"http-server -o --silent\" \"npm run livereload\"",
"start": "parallelshell \"npm run dev\" \"npm run serve\""
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.18.0",
"http-server": "^0.9.0",
"livereload": "^0.6.0",
"onchange": "^3.0.2",
"parallelshell": "^2.0.0",
"rtlcss": "^2.0.7",
"stylus": "^0.54.5",
"uglify-js": "^2.7.4"
},
"main": "dist/flatpickr.js",
"repository": {
"type": "git",
"url": "git+https://github.com/chmln/flatpickr.git"
},
"author": "Gregory <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chmln/flatpickr/issues"
},
"homepage": "https://chmln.github.io/flatpickr",
"keywords": [
"javascript",
"datetimepicker",
"calendar",
"date",
"time",
"picker",
"lightweight"
]
}