-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
100 lines (100 loc) · 2.89 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-tailwind",
"version": "2.5.1",
"description": "Vue components styled with TailwindCss with configurable classes",
"repository": {
"type": "git",
"url": "git+https://github.com/alfonsobries/vue-tailwind"
},
"keywords": [
"tailwindcss",
"vue",
"vue-tailwind",
"vue components",
"tailwind components"
],
"author": "Alfonso Bribiesca <[email protected]> (https://www.vexilo.com/)",
"license": "MIT",
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup --config build/rollup.config.js",
"test": "vue-cli-service test:unit",
"test:watch": "vue-cli-service test:unit --watch",
"lint": "vue-cli-service lint",
"release": "release-it"
},
"dependencies": {
"body-scroll-lock": "^3.1.5",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.intersection": "^4.4.0",
"lodash.isequal": "^4.5.0",
"lodash.kebabcase": "^4.1.1",
"lodash.map": "^4.6.0",
"lodash.mapvalues": "^4.6.0",
"lodash.merge": "^4.6.2",
"lodash.pick": "^4.4.0",
"lodash.range": "^3.2.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^6.1.0",
"@tailwindcss/forms": "^0.2.1",
"@types/body-scroll-lock": "^2.6.1",
"@types/jest": "^26.0.16",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.intersection": "^4.4.6",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.kebabcase": "^4.1.6",
"@types/lodash.map": "^4.6.13",
"@types/lodash.mapvalues": "^4.6.6",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.pick": "^4.4.6",
"@types/lodash.range": "^3.2.6",
"@types/vue": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vue/cli-plugin-babel": "~4.5.9",
"@vue/cli-plugin-eslint": "~4.5.9",
"@vue/cli-plugin-typescript": "~4.5.9",
"@vue/cli-plugin-unit-jest": "^4.5.9",
"@vue/cli-service": "~4.5.9",
"@vue/compiler-sfc": "^3.0.4",
"@vue/eslint-config-airbnb": "^5.1.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "1.1.1",
"autoprefixer": "^9",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.2.0",
"postcss": "^7",
"release-it": "^14.2.2",
"rollup": "^2.34.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-vue": "^6.0.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"tslib": "^2.0.3",
"typescript": "~3.9.7",
"vue-template-compiler": "^2",
"vue": "^2"
},
"homepage": "https://vue-tailwind.com",
"files": [
"dist/*"
],
"typings": "./dist/index.d.ts",
"main": "dist/vue-tailwind.js",
"release-it": {
"hooks": {
"before:init": [
"yarn test"
],
"after:bump": "yarn build"
}
},
"peerDependencies": {
"vue": "^2"
}
}