-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
85 lines (85 loc) · 3.38 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-airbnb-style-datepicker",
"version": "2.7.0",
"description": "A VueJs version of the popular AirBnb datepicker",
"main": "dist/vue-airbnb-style-datepicker.cjs.js",
"module": "dist/vue-airbnb-style-datepicker.es.js",
"unpkg": "dist/vue-airbnb-style-datepicker.js",
"repository": {
"url": "MikaelEdebro/vue-airbnb-style-datepicker",
"type": "git"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/ && npm run build:main && npm run build:no-dep",
"build:main": "bili --js buble --format cjs,es,umd,umd-min --plugin vue",
"build:no-dep": "bili --js buble --outDir dist/no-dep --format umd,umd-min --plugin vue --no-inline --global.date-fns/format dateFns.format --global.date-fns/sub_months dateFns.subMonths --global.date-fns/add_months dateFns.addMonths --global.date-fns/get_days_in_month dateFns.getDaysInMonth --global.date-fns/last_day_of_month dateFns.lastDayOfMonth --global.date-fns/get_month dateFns.getMonth --global.date-fns/set_month dateFns.setMonth --global.date-fns/get_year dateFns.getYear --global.date-fns/set_year dateFns.setYear --global.date-fns/is_same_month dateFns.isSameMonth --global.date-fns/is_same_day dateFns.isSameDay --global.date-fns/add_days dateFns.addDays --global.date-fns/sub_days dateFns.subDays --global.date-fns/add_weeks dateFns.addWeeks --global.date-fns/sub_weeks dateFns.subWeeks --global.date-fns/start_of_month dateFns.startOfMonth --global.date-fns/start_of_week dateFns.startOfWeek --global.date-fns/end_of_week dateFns.endOfWeek --global.date-fns/is_before dateFns.isBefore --global.date-fns/is_after dateFns.isAfter --global.date-fns/is_valid dateFns.isValid",
"dev": "poi",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"test:debug": "node --inspect --inspect-brk node_modules/jest/bin/jest.js"
},
"author": "MikaelEdebro <mikael.edebro@gmail.com>",
"license": "MIT",
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"bili": "^3.1.2",
"date-fns": "^1.29.0",
"eslint": "^4.19.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.3.0",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"node-sass": "^4.9.3",
"poi": "^9.6.13",
"poi-preset-eslint": "^9.1.1",
"prettier": "^1.15.2",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"rollup-plugin-vue": "^3.0.0",
"sass-loader": "^6.0.6",
"vue-jest": "^2.3.0",
"vue-template-compiler": "^2.5.13"
},
"peerDependencies": {
"date-fns": "1.x",
"vue": "2.x"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"^test/(.*)$": "<rootDir>/test/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"v-click-outside": "^2.0.1"
}
}