forked from ankurk91/vue-bootstrap-datetimepicker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.34 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": "vue-bootstrap-datetimepicker",
"version": "4.1.3",
"description": "Vue.js component for bootstrap-datetimepicker",
"main": "dist/vue-bootstrap-datetimepicker.js",
"unpkg": "dist/vue-bootstrap-datetimepicker.min.js",
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ankurk91/vue-bootstrap-datetimepicker.git"
},
"keywords": [
"vue",
"bootstrap",
"bootstrap-datetimepicker",
"vue-bootstrap-datetimepicker",
"datepicker",
"timepicker"
],
"author": "ankurk91",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankurk91/vue-bootstrap-datetimepicker/issues"
},
"homepage": "https://github.com/ankurk91/vue-bootstrap-datetimepicker",
"scripts": {
"test": "node ./node_modules/jest/bin/jest.js",
"test:watch": "npm run test -- --watch --onlyChanged --notify",
"start": "npm run dev",
"dev": "cross-env NODE_ENV=development node ./node_modules/webpack-serve/cli.js --config=webpack.config.dev.js",
"build": "cross-env NODE_ENV=production node ./node_modules/webpack-command/lib/cli.js --mode production",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"lukewilson-bootstrap-datetimepicker": "^4.17.47"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.16",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.7.0",
"bootstrap": "~3.3.7",
"clean-webpack-plugin": "^0.1.18",
"cross-env": "^5.1.5",
"css-loader": "^0.28.10",
"file-loader": "^1.1.9",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.4",
"jquery": "^3.3.1",
"style-loader": "^0.21.0",
"unminified-webpack-plugin": "^2.0.0",
"vee-validate": "^2.0.9",
"vue": "^2.5.13",
"vue-jest": "^2.6.0",
"vue-loader": "^15.1.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^4.8.3",
"webpack-command": "^0.2.0",
"webpack-serve": "^1.0.2"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"engines": {
"node": ">= 4.2.0",
"npm": ">= 3.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx",
"node",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"collectCoverage": true
}
}