forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.97 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.97 KB
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
71
72
73
74
75
76
{
"name": "flatpickr",
"version": "2.4.4",
"description": "A lightweight, powerful javascript datetime picker",
"scripts": {
"build": "run-p build:*",
"build:script": "run-s build:script:unmin build:script:min",
"build:script:min": "cat dist/flatpickr.js | uglifyjs -c -m --comments > dist/flatpickr.min.js",
"build:script:unmin": "babel src/flatpickr.js --out-file dist/flatpickr.js",
"build:extra": "run-p build:extra:*",
"build:extra:l10n": "babel src/l10n --out-dir dist/l10n",
"build:extra:plugins": "cp -r src/plugins dist && babel src/plugins --out-dir dist/plugins",
"build:style": "run-p build:style:*",
"build:style:min": "stylus -c < ./src/style/flatpickr.styl | postcss -c postcss_min.json -o dist/flatpickr.min.css",
"build:style:rtl": "rtlcss -d ./dist/themes ./dist/rtl/themes && rtlcss dist/flatpickr.min.css dist/rtl/flatpickr.min.css",
"build:style:themes": "stylus --out dist/themes src/style/themes && postcss -c postcss_min.json -r dist/themes/*.css",
"build:style:unmin": "stylus < ./src/style/flatpickr.styl | postcss -c postcss.json -o dist/flatpickr.css",
"dev": "run-p dev:*",
"dev:script": "env CHOKIDAR_USEPOLLING=true run-s build:script -- --watch",
"dev:plugins": "onchange \"src/plugins/**/*\" -- run-s build:plugins",
"dev:style": "onchange \"src/style/**/*\" -- run-s build:style",
"dev:lint": "onchange \"src/flatpickr.js\" -- run-s lint",
"lint": "eslint src/flatpickr.js || true",
"serve": "run-p serve:*",
"serve:http": "http-server -o --silent",
"serve:livereload": "livereload \"dist\"",
"start": "run-p build dev serve lint",
"test": "jest --bail",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"release": "node ./newRelease.js"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.7.6",
"babel-cli": "^6.23.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.22.0",
"coveralls": "^2.12.0",
"cssnano": "^3.10.0",
"eslint": "^3.17.1",
"http-server": "^0.9.0",
"jest": "^19.0.2",
"livereload": "^0.6.0",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"parallelshell": "^2.0.0",
"postcss-cli": "https://github.com/postcss/postcss-cli.git#develop",
"postcss-flexbugs-fixes": "^2.1.0",
"rtlcss": "^2.1.2",
"semver": "^5.3.0",
"stylus": "^0.54.5",
"uglify-js": "^2.8.8"
},
"main": "dist/flatpickr.js",
"style": "dist/flatpickr.css",
"repository": {
"type": "git",
"url": "git+https://github.com/chmln/flatpickr.git"
},
"author": "Gregory <gregory.mkv@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chmln/flatpickr/issues"
},
"homepage": "https://chmln.github.io/flatpickr",
"keywords": [
"javascript",
"datetimepicker",
"calendar",
"date",
"time",
"picker",
"lightweight"
]
}