forked from flatpickr/flatpickr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.36 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": "4.3.2",
"description": "A lightweight, powerful javascript datetime picker",
"scripts": {
"build": "run-s build:pre build:build build:post",
"build:pre": "mkdir -p dist/themes",
"build:build": "ts-node build.ts",
"build:post": "rm -f dist/index.d.ts",
"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 ./ --noEmit",
"test:unit": "jest --config .jest.json",
"coveralls": "jest --config .jest.json --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "lint-staged",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {},
"devDependencies": {
"@types/acorn": "^4.0.3",
"@types/chokidar": "^1.7.2",
"@types/glob": "^5.0.35",
"@types/jest": "^22.1.1",
"@types/jquery": "^3.3.0",
"@types/node": "^9.4.3",
"@types/stylus": "^0.48.29",
"@types/uglify-js": "^2.6.30",
"autoprefixer-stylus": "latest",
"chokidar": "2.0.1",
"coveralls": "^3.0.0",
"glob": "latest",
"husky": "^0.14.3",
"jest": "22.2.1",
"lint-staged": "^6.1.0",
"magic-string": "^0.22.4",
"npm-run-all": "^4.1.1",
"prettier": "^1.10.2",
"rollup": "^0.55.3",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-typescript2": "github:ezolenko/rollup-plugin-typescript2",
"rtlcss": "^2.2.1",
"source-map": "^0.7.0",
"stylus": "latest",
"ts-jest": "22.0.3",
"ts-node": "^4.1.0",
"typescript": "2.6.2",
"uglify-js": "^3.3.10"
},
"main": "dist/flatpickr.js",
"style": "dist/flatpickr.css",
"types": "./index.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"
]
}
}