This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.87 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@willsoto/vue-pickr",
"version": "0.2.0",
"license": "MIT",
"main": "./dist/VuePickr.umd.js",
"module": "./dist/VuePickr.esm.js",
"files": [
"dist",
"src"
],
"homepage": "https://github.com/willsoto/vue-pickr",
"bugs": "https://github.com/willsoto/vue-pickr/issues",
"author": {
"name": "Will",
"email": "2791730+willsoto@users.noreply.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/willsoto/vue-pickr.git"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "rollup --config rollup.config.js",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"storybook": "start-storybook -p 9001 --config-dir .storybook --static-dir ./public",
"release": "standard-version --sign --message 'chore(release): %s [skip ci]'",
"postrelease": "git push --follow-tags origin master && npm publish"
},
"devDependencies": {
"@storybook/addon-actions": "4.0.0-alpha.9",
"@storybook/addons": "4.0.0-alpha.9",
"@storybook/vue": "4.0.0-alpha.9",
"@vue/cli": "3.0.0-rc.3",
"@vue/cli-plugin-babel": "3.0.0-rc.3",
"@vue/cli-plugin-eslint": "3.0.0-rc.3",
"@vue/cli-plugin-unit-jest": "3.0.0-rc.3",
"@vue/cli-service": "3.0.0-rc.3",
"@vue/eslint-config-prettier": "3.0.0-rc.3",
"@vue/test-utils": "1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.0.1",
"lint-staged": "7.2.0",
"pickr-widget": "0.1.3",
"postcss-import": "11.1.0",
"prettier": "1.13.5",
"rimraf": "2.6.2",
"rollup": "0.61.2",
"rollup-plugin-eslint": "4.0.0",
"rollup-plugin-filesize": "2.0.0",
"rollup-plugin-vue": "4.3.0",
"standard-version": "4.4.0",
"vue": "2.5.16",
"vue-template-compiler": "2.5.16"
},
"peerDependencies": {
"pickr-widget": ">=0.1.2",
"vue": ">=2.5.16"
},
"browserslist": [
"> 10%"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.vue",
"!**/node_modules/**"
],
"coverageDirectory": "<rootDir>/coverage",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
],
"transform": {
".+\\.vue$": "vue-jest",
".+\\.js$": "babel-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1"
},
"snapshotSerializers": [
"jest-serializer-vue"
],
"testMatch": [
"<rootDir>/(tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx))"
]
},
"lint-staged": {
"*.vue": [
"vue-cli-service lint",
"git add",
"vue-cli-service lint",
"git add"
],
"*.js": [
"vue-cli-service lint",
"git add"
]
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}