-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 2.21 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
{
"license": "MIT",
"main": "build/js/tempusdominus-core.js",
"module": "src/js/tempusdominus-core.js",
"name": "tempusdominus-core",
"author": {
"name": "Jonathan Peterson"
},
"contributors": [
"Anton Bagdatyev (Tonix)"
],
"bugs": {
"url": "https://github.com/tonix-tuft/tempusdominus/pulls"
},
"scripts": {
"watch": "./node_modules/.bin/onchange './src/js/**' -- npm run build",
"build": "grunt build",
"build-all": "npm run build",
"git-add-cm": "git add . && git commit -am",
"publish-patch": "npm version patch && npm run build && ((npm run git-add-cm -- \"Next patch version\" 2>/dev/null) || echo) && npm publish && git push && git push --tags",
"publish-minor": "npm version minor && npm run build && ((npm run git-add-cm -- \"Next minor version\" 2>/dev/null) || echo) && npm publish && git push && git push --tags",
"publish-major": "npm version major && npm run build && ((npm run git-add-cm -- \"Next major version\" 2>/dev/null) || echo) && npm publish && git push && git push --tags"
},
"dependencies": {
"jquery": "^3.6.0",
"moment": "~2.29.2",
"moment-timezone": "^0.5.34"
},
"peerDependencies": {
"jquery": "^3.0",
"moment": "^2.29.2",
"moment-timezone": "^0.5.0"
},
"description": "A date/time picker component designed for Momentjs.",
"devDependencies": {
"babel-plugin-transform-es2015-modules-strip": "^0.1.2",
"babel-preset-es2015": "^6.24.1",
"grunt": "^1.5.0",
"grunt-babel": "6.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-jshint": "latest",
"grunt-contrib-less": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-eslint": "^19.0.0",
"grunt-nuget": "^0.3.1",
"grunt-string-replace": "latest",
"load-grunt-tasks": "latest",
"onchange": "^7.1.0"
},
"keywords": [
"datepicker",
"datetimepicker",
"timepicker",
"moment"
],
"repository": {
"type": "git",
"url": "https://github.com/tempusdominus/core.git"
},
"version": "5.19.3",
"files": [
"build",
"src/js/**/*.js",
"Gruntfile.js"
]
}