forked from AustinGil/vuetensils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
156 lines (156 loc) · 5.08 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "vuetensils",
"version": "1.0.0-0",
"description": "A tasty toolset for Vue.js",
"author": "Austin Gil <austin@stegosource.com>",
"license": "MIT",
"main": "dist/vuetensils.umd.js",
"module": "dist/vuetensils.esm.js",
"unpkg": "dist/vuetensils.min.js",
"files": [
"/src",
"/dist"
],
"typings": "types",
"repository": {
"type": "git",
"url": "git+https://github.com/Stegosource/vuetensils.git"
},
"scripts": {
"dev": "npm run docs:dev",
"test": "npm run test:unit",
"test:unit": "jest --coverage",
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.{js,ts,vue,tsx,jsx,css,scss,md} docs/**/*.{js,ts,vue,tsx,jsx,css,scss,md}",
"lint:diff": "eslint $(git diff --name-only -- src/*.vue src/*.js docs/*.vue docs/*.js)",
"ts": "tsc",
"audit": "npm run lint:diff && npm run test:unit",
"build": "npm run ts && npm run build:umd && npm run build:es && npm run build:unpkg",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/vuetensils.umd.js",
"build:es": "rollup --config build/rollup.config.js --format es --file dist/vuetensils.esm.js",
"build:unpkg": "rollup --config build/rollup.config.js --format iife --file dist/vuetensils.min.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"commit": "git add . && git commit",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"npm run lint -- --fix",
"git add"
]
},
"ManifestComments": [
"Pinned jest to 24.9.0. 25.1.0+ is broken on Windows. Waiting for issue #9459 to be resolved.",
"Pinned vuepress-plugin-live to 1.4.2 because 1.5.3 broke the following examples in the docs:",
[
"http://localhost:8080/components/Async.html#call-promise-using-refs",
"http://localhost:8080/components/Dialog.html#prevent-scrolling",
"http://localhost:8080/components/Drawer.html#styled-examples",
"http://localhost:8080/components/Drawer.html#examples",
"http://localhost:8080/components/Drawer.html#using-v-model",
"http://localhost:8080/components/Drawer.html#right-aligned",
"http://localhost:8080/components/Drawer.html#prevent-page-scroll",
"http://localhost:8080/components/Drawer.html#add-transitions",
"http://localhost:8080/components/File.html#custom-dropzone-content",
"http://localhost:8080/components/Form.html#styled-example",
"http://localhost:8080/components/Form.html#form-status",
"http://localhost:8080/components/Form.html#clearing-inputs",
"http://localhost:8080/components/Input.html#styled-example",
"http://localhost:8080/components/Intersect.html#using-a-scoped-slot",
"http://localhost:8080/components/Resize.html#styled-example",
"http://localhost:8080/components/Toggle.html#scoped-slots",
"http://localhost:8080/directives/clickout.html#usage",
"http://localhost:8080/directives/intersect.html#default-behavior"
]
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@commitlint/prompt": "^9.1.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@vue/test-utils": "^1.0.3",
"@vuepress/plugin-google-analytics": "^1.5.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.6.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^30.2.1",
"eslint-plugin-markdown": "^2.0.0-alpha.0",
"eslint-plugin-vue": "^7.0.0-beta.2",
"eslint-plugin-vuejs-accessibility": "^0.3.1",
"husky": "^4.2.5",
"jest": "^26.3.0",
"jest-serializer-vue-tjw": "^3.14.0",
"lint-staged": "^10.2.11",
"minimist": "^1.2.5",
"release-it": "^13.6.6",
"rollup": "^2.23.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-plugin-vue": "^5.1.9",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"typescript": "^3.9.7",
"vue-docgen-api": "^4.30.0",
"vue-jest": "^3.0.6",
"vue-router": "^3.4.2",
"vuepress": "^1.5.3",
"vuepress-plugin-docgen": "^1.2.9",
"vuepress-plugin-live": "^1.4.2"
},
"keywords": [
"vue",
"vuejs",
"vue.js",
"vue2",
"web",
"components",
"ui",
"library",
"component library",
"accessibility",
"accessible",
"a11y",
"semantic",
"alert",
"async",
"drawer",
"dropdown",
"img",
"image",
"lazy-load",
"lazyload",
"input",
"textarea",
"checkbox",
"radio",
"select",
"option",
"intersection observer",
"modal",
"dialog",
"dialogue",
"tabs",
"toggle",
"collapse"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}