forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "flatpickr",
"version": "3.0.7",
"description": "A lightweight, powerful javascript datetime picker",
"scripts": {
"build": "ts-node build.ts",
"start": "npm run build -- --dev",
"rollup:start": "rollup -w -c",
"rollup:build": "rollup -c",
"test": "jest --config .jest.json",
"typecheck": "tsc -p ./ --noEmit",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "lint-staged --silent"
},
"dependencies": {},
"devDependencies": {
"@types/chokidar": "^1.7.2",
"@types/glob": "^5.0.32",
"@types/jest": "^20.0.8",
"@types/jquery": "^3.2.12",
"@types/ncp": "^2.0.1",
"@types/node": "^8.0.28",
"@types/rollup": "^0.41.1",
"@types/stylus": "^0.48.28",
"@types/uglify-js": "^2.6.29",
"autoprefixer-stylus": "latest",
"chokidar": "latest",
"coveralls": "latest",
"glob": "latest",
"husky": "^0.14.3",
"jest": "^21.0.2",
"lint-staged": "^4.1.3",
"ncp": "latest",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.1",
"prettier": "^1.6.1",
"rollup": "^0.49.2",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-typescript2": "^0.5.2",
"rtlcss": "latest",
"stylus": "latest",
"ts-jest": "^21.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2",
"uglify-js": "^3.1.2"
},
"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"
],
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --trailing-comma es5 --write",
"git add"
]
}
}