forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.72 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
86
87
88
89
90
91
92
{
"name": "flatpickr",
"version": "4.5.1",
"description": "A lightweight, powerful javascript datetime picker",
"scripts": {
"build": "run-s build:pre build:build build:post",
"build:pre": "rm -rf dist && mkdir -p dist/themes",
"build:build": "ts-node --transpileOnly build.ts",
"build:post": "sh ./emitDeclarations.sh",
"fmt": "prettier --write --trailing-comma es5 --write",
"start": "npm run build:build -- --dev",
"rollup:start": "rollup -w -c",
"rollup:build": "rollup -c",
"test": "run-s test:typecheck test:unit",
"test:typecheck": "tsc -p src --noEmit",
"test:unit": "jest --config .jest.json",
"coveralls": "jest --config .jest.json --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/plugin-proposal-optional-catch-binding": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"@types/acorn": "^4.0.3",
"@types/chokidar": "^1.7.5",
"@types/fs-extra": "^5.0.3",
"@types/glob": "^5.0.35",
"@types/jest": "^23.1.3",
"@types/jquery": "^3.3.4",
"@types/node": "10.5.1",
"@types/stylus": "^0.48.30",
"@types/uglify-js": "^3.0.2",
"autoprefixer-stylus": "latest",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chokidar": "2.0.4",
"coveralls": "^3.0.2",
"fs-extra": "^6.0.1",
"glob": "latest",
"husky": "^1.0.0-rc.9",
"jest": "23.2.0",
"lint-staged": "^7.2.0",
"magic-string": "^0.25.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-typescript": "^0.8.1",
"rtlcss": "^2.4.0",
"source-map": "^0.7.3",
"stylus": "latest",
"ts-jest": "22",
"ts-node": "^7.0.0",
"typescript": "^2.9.2",
"uglify-js": "^3.4.2"
},
"main": "dist/flatpickr.js",
"style": "dist/flatpickr.css",
"types": "./dist/typings.d.ts",
"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"
],
"browserslist": [
"ie >= 9",
"last 2 versions",
"safari >= 7"
],
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --trailing-comma es5 --write",
"git add"
]
}
}