forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "flatpickr",
"version": "2.6.1",
"description": "A lightweight, powerful javascript datetime picker",
"scripts": {
"start": "nodemon --watch build.js build.js -- --dev",
"build": "node build.js",
"test": "jest --bail",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"release": "jest --bail --silent && ./release"
},
"dependencies": {},
"devDependencies": {
"autoprefixer-stylus": "^0.13.0",
"babel-cli": "next",
"babel-plugin-transform-object-assign": "next",
"babel-plugin-transform-remove-strict-mode": "latest",
"babel-preset-es2015": "next",
"chokidar": "^1.6.1",
"coveralls": "latest",
"eslint": "latest",
"glob": "^7.1.1",
"http-server": "latest",
"jest": "latest",
"livereload": "latest",
"ncp": "latest",
"node-watch": "^0.5.2",
"nodemon": "^1.11.0",
"npm-run-all": "latest",
"opn": "^4.0.2",
"rtlcss": "latest",
"semver": "latest",
"stylus": "latest",
"uglify-js": "latest"
},
"main": "dist/flatpickr.js",
"style": "dist/flatpickr.css",
"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"
],
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/flatpickr",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"browserslist": [
"ie >= 9",
"last 2 versions",
"safari >= 7"
]
}