-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
76 lines (76 loc) · 3.55 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
{
"license": "MIT",
"main": "build/js/tempusdominus-bootstrap-3.js",
"name": "tempusdominus-bootstrap-3",
"author": "Jonathan Peterson",
"bugs": {
"url": "https://github.com/tempusdominus/bootstrap-3/issues"
},
"dependencies": {
"bootstrap": "3.4.1",
"jquery": "^3.0",
"moment": "^2.17",
"moment-timezone": "^0.5.11",
"tempusdominus-core": "5.0.0-alpha17"
},
"peerDependenciesd": {
"bootstrap": "3.3.7",
"jquery": "^1.9.1 || ^2.0 || ^3.0",
"moment": "^2.17",
"moment-timezone": "^0.5.11",
"tempusdominus-core": "5.0.0-alpha17"
},
"scripts": {
"change-version": "node grunt/change-version.js",
"clean-css": "cleancss --skip-advanced --source-map --output dist/css/bootstrap.min.css dist/css/bootstrap.css && cleancss --skip-advanced --source-map --output dist/css/bootstrap-grid.min.css dist/css/bootstrap-grid.css && cleancss --skip-advanced --source-map --output dist/css/bootstrap-reboot.min.css dist/css/bootstrap-reboot.css",
"clean-css-docs": "cleancss --skip-advanced --source-map --output docs/assets/css/docs.min.css docs/assets/css/docs.min.css",
"eslint": "eslint --ignore-path .eslintignore js && eslint --config js/tests/.eslintrc.json --env node grunt Gruntfile.js && eslint --config js/tests/.eslintrc.json docs/assets/js/src docs/assets/js/ie-emulation-modes-warning.js docs/assets/js/ie10-viewport-bug-workaround.js",
"htmlhint": "htmlhint --config docs/.htmlhintrc _gh_pages/",
"postcss": "postcss --config grunt/postcss.js --replace dist/css/*.css",
"postcss-docs": "postcss --config grunt/postcss.js --no-map --replace docs/assets/css/docs.min.css && postcss --config grunt/postcss.js --no-map --replace docs/examples/**/*.css",
"scss-lint": "bundle exec scss-lint --config scss/.scss-lint.yml --exclude scss/_normalize.scss scss/*.scss",
"scss-lint-docs": "bundle exec scss-lint --config scss/.scss-lint.yml --exclude docs/assets/scss/docs.scss docs/assets/scss/*.scss",
"uglify": "uglifyjs --compress warnings=false --mangle --output build/js/tempusdominus-bootstrap-3.min.js build/js/tempusdominus-bootstrap-3.js",
"uglify-docs": "uglifyjs --compress warnings=false --mangle --comments '/^!/' --output docs/assets/js/docs.min.js docs/assets/js/vendor/*.js docs/assets/js/src/application.js",
"update-shrinkwrap": "npm shrinkwrap --dev && shx mv ./npm-shrinkwrap.json ./grunt/npm-shrinkwrap.json",
"test": "npm run eslint && grunt test"
},
"description": "A date/time picker component designed to work with Bootstrap 3 and Momentjs. For usage, installation and demos see Project Site on GitHub",
"devDependencies": {
"babel-plugin-transform-es2015-modules-strip": "^0.1.0",
"babel-preset-es2015": "^6.16.0",
"grunt": "latest",
"grunt-babel": "6.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.1",
"grunt-contrib-jasmine": "^2.2.0",
"grunt-contrib-less": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "^1.0.0",
"grunt-env": "^1.0.1",
"grunt-eslint": "^19.0.0",
"grunt-nuget": "^0.3.1",
"grunt-stamp": "^0.3.0",
"grunt-string-replace": "latest",
"load-grunt-tasks": "latest",
"uglify-js": "^2.7.5"
},
"homepage": "https://tempusdominus.github.io/bootstrap-3/",
"keywords": [
"bootstrap",
"datepicker",
"datetimepicker",
"timepicker",
"moment"
],
"repository": {
"type": "git",
"url": "https://github.com/tempusdominus/bootstrap-3.git"
},
"version": "5.0.0-alpha11",
"files": [
"build",
"src/js/**/*.js",
"Gruntfile.js"
]
}