-
Notifications
You must be signed in to change notification settings - Fork 122
/
package.json
100 lines (100 loc) · 3.24 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
{
"name": "vue-rangedate-picker",
"version": "1.0.0",
"description": "Date picker with range selection",
"author": "hidayat.febiansyah <[email protected]>",
"main": "dist/vue-rangedate-picker.js",
"module": "dist/vue-rangedate-picker.js",
"browser": "dist/vue-rangedate-picker.js",
"unpkg": "dist/vue-rangedate-picker.js",
"style": "dist/vue-rangedate-picker.css",
"scripts": {
"clean": "rm -rf coverage && rm -rf dist/*.js* && rm ./*.log",
"dev": "cross-env BABEL_ENV=test webpack-dev-server --inline --hot --open --content-base ./test/unit/ --config config/webpack.dev.conf.js",
"start": "npm run dev",
"lint": "eslint src test config",
"test": "npm run lint && npm run test:cover && npm run test:e2e",
"test:cover": "cross-env BABEL_ENV=test karma start config/karma.cover.conf.js",
"test:cover-upload": "npm run test:cover && codecov",
"test:unit": "cross-env BABEL_ENV=test karma start config/karma.unit.conf.js",
"build": "rm -rf dist/*.js* && webpack --config config/webpack.prod.conf.js"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-flow-vue": "^1.0.0",
"babel-preset-power-assert": "^1.0.0",
"buble": "^0.14.0",
"chromedriver": "^2.27.2",
"codecov": "^3.0.0",
"conventional-changelog-cli": "^1.2.0",
"conventional-github-releaser": "^1.1.3",
"copy-webpack-plugin": "^4.3.1",
"cross-env": "^5.0.5",
"cross-spawn": "^5.0.1",
"eslint": "^3.14.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-vue-libs": "^1.2.0",
"flow-bin": "^0.38.0",
"gitbook-cli": "^2.3.0",
"html-webpack-plugin": "^2.19.0",
"http-server": "^0.9.0",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"mocha-loader": "^1.1.1",
"nightwatch": "^0.9.12",
"nightwatch-helpers": "^1.2.0",
"power-assert": "^1.4.2",
"selenium-server": "2.53.1",
"uglify-js": "^2.7.5",
"vue": "^2.1.10",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.1",
"webpack-merge": "^4.1.1"
},
"files": [
"dist/vue-rangedate-picker.js",
"dist/vue-rangedate-picker.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bliblidotcom/vue-rangedate-picker.git"
},
"bugs": {
"url": "https://github.com/bliblidotcom/vue-rangedate-picker/issues"
},
"homepage": "https://github.com/bliblidotcom/vue-rangedate-picker#readme",
"license": "MIT",
"keywords": [
"plugin",
"vue",
"rangedate",
"date picker",
"date",
"range"
],
"engines": {
"node": ">= 6.0"
},
"dependencies": {
"fecha": "^2.3.2"
}
}