-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
package.json
115 lines (115 loc) · 3.69 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"author": {
"name": "Jonathan Peterson"
},
"name": "@eonasdan/tempus-dominus",
"version": "6.9.4",
"style": "dist/css/tempus-dominus.css",
"sass": "scss/tempus-dominus.scss",
"main": "dist/js/tempus-dominus.js",
"module": "dist/js/tempus-dominus.esm.js",
"types": "types/tempus-dominus.d.ts",
"files": [
"dist/**/*",
"src/js/**/*.ts",
"src/js/locales/**/*.ts",
"src/js/plugins/**/*.ts",
"src/scss/**/*.scss",
"types/**/*"
],
"scripts": {
"start": "npm run build && concurrently \"npm:*-watch\"",
"test": "vitest --ui",
"test:silent": "vitest --run --silent",
"test:coverage": "vitest run --coverage",
"serve": "node ./build/serve.js",
"clean": "node ./build/utilities.js --clean ./dist && node ./build/utilities.js --clean ./types",
"build": "npm run clean && node ./build/utilities.js --copy && npm run rollup && npm run build:declarations && npm run build:plugins-and-locales",
"build:plugins": "node ./build/plugins.js -p",
"build:locales": "node ./build/plugins.js -l",
"build:plugins-and-locales": "node ./build/plugins.js",
"build:declarations": "node ./build/utilities.js --clean ./types && tsc --declaration --emitDeclarationOnly --outDir types",
"sass": "sass src/scss/tempus-dominus.scss ./dist/css/tempus-dominus.css",
"rollup": "rollup -c ./build/rollup.config.js",
"rollup-watch": "rollup -c ./build/rollup.config.js -w",
"docs": "node ./src/docs/make.js",
"docs-watch": "node ./src/docs/make.js --watch",
"release": "npm run eslint && npm run test:silent && npm run build",
"release:version": "npm run release && node build/change-version.js",
"prepare": "husky install",
"prettier": "prettier --ignore-unknown --write .",
"eslint": "npm run prettier && npx eslint --ext .html,.ts ."
},
"lint-staged": {
"**/*!(.d)/.ts": [
"npm run eslint"
],
"**/*": [
"npm run prettier"
]
},
"bugs": {
"url": "https://github.com/eonasdan/tempus-dominus/issues"
},
"peerDependencies": {
"@popperjs/core": "^2.11.6"
},
"peerDependenciesMeta": {
"@popperjs/core\"": {
"optional": true
}
},
"description": "A robust and powerful date/time picker component. For usage, installation and demos see Project Site on GitHub",
"devDependencies": {
"@eonasdan/parvus-server": "^1.2.1",
"@popperjs/core": "^2.11.6",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitest/coverage-c8": "^0.29.2",
"@vitest/ui": "^0.29.2",
"bootstrap": "^5.2.3",
"chokidar": "^3.5.3",
"clean-css": "^5.3.2",
"concurrently": "^7.6.0",
"dropcss": "^1.0.16",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"glob": "^7.2.3",
"globby": "^11.1.0",
"html-minifier-terser": "^5.1.1",
"husky": "^8.0.3",
"jsdom": "^20.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.2.0",
"sass": "^1.58.3",
"terser": "^5.16.5",
"tslib": "^2.5.0",
"typescript": "~4.9.5",
"vitest": "^0.29.2",
"vitest-github-actions-reporter": "^0.10.0"
},
"homepage": "https://getdatepicker.com/",
"keywords": [
"datepicker",
"datetimepicker",
"timepicker"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Eonasdan/tempus-dominus.git"
},
"wallaby": {
"filesWithNoCoverageCalculated": [
"test/fixtures/**/*"
]
},
"funding": "https://ko-fi.com/eonasdan"
}