forked from nuxt-community/vuetify-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "@nuxtjs/vuetify",
"version": "1.11.2",
"description": "Vuetify Module for Nuxt.js",
"license": "MIT",
"contributors": [
{
"name": "Pooya Parsa (@pi0)"
},
{
"name": "Kevin Marrec (@kevinmarrec)"
}
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "nuxt-community/vuetify-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc && nuxt-ts test/fixture",
"build": "tsc",
"lint": "eslint --ext .ts,.js,.vue .",
"test": "yarn lint && jest",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish"
},
"files": [
"dist",
"templates"
],
"dependencies": {
"deepmerge": "^4.2.2",
"fibers": "^4.0.3",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"vuetify": "^2",
"vuetify-loader": "^1.4.3"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@nuxt/typescript-build": "^0.6.6",
"@nuxt/typescript-runtime": "^0.4.6",
"@nuxtjs/eslint-config-typescript": "^1.0.2",
"@types/jest": "^25.2.1",
"@types/sass": "^1.16.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"nuxt-edge": "2.11.1-26375059.fd5fefe",
"nuxt-webfontloader": "^1.1.0",
"standard-version": "^7.1.0",
"ts-jest": "^25.4.0",
"typescript": "~3.8"
}
}