forked from Eonasdan/tempus-dominus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "tempus-dominus",
"version": "4.2.10",
"description": "A date/time picker component designed to work with Bootstrap 3 and DayJS. Forked from http://eonasdan.github.io/bootstrap-datetimepicker/",
"license": "MIT",
"main": "dist/js/bootstrap-datetimepicker.js",
"repository": {
"type": "git",
"url": "https://github.com/waywedo/tempus-dominus.git"
},
"homepage": "http://eonasdan.github.io/bootstrap-datetimepicker/",
"bugs": {
"url": "https://github.com/waywedo/tempus-dominus/issues"
},
"author": {
"name": "Jonathan Peterson / Way We Do"
},
"scripts": {
"build": "babel src -d dist --no-comments & lessc --include-path=node_modules --clean-css src/less/bootstrap-datetimepicker-build.less dist/css/bootstrap-datetimepicker.min.css",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"lint": "eslint src/**/*.js",
"precommit": "npm test",
"less": "lessc --include-path=node_modules --clean-css src/less/bootstrap-datetimepicker-build.less dist/css/bootstrap-datetimepicker.min.css",
"dev": "npx webpack serve"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironment": "jsdom"
},
"keywords": [
"twitter-bootstrap",
"bootstrap",
"datepicker",
"datetimepicker",
"timepicker"
],
"peerDependencies": {
"bootstrap": "latest-3",
"dayjs": "^1.11.4",
"jquery": "^3.6.0"
},
"dependencies": {
"bootstrap": "latest-3",
"dayjs": "^1.11.4",
"jquery": "^3.6.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/preset-env": "^7.19.0",
"babel-jest": "^29.0.2",
"eslint": "^8.23.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"less": "^4.1.3",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^4.17.21",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
}
}