-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.45 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.45 KB
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
{
"name": "nuxt-vuikit",
"main": "lib/module.js",
"preferGlobal": false,
"version": "1.1.0",
"description": "Vuikit Module for Nuxt.js",
"author": {
"email": "TiagoDanin@outlook.com",
"name": "Tiago Danin",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"nuxt",
"nuxt-module",
"nuxt-plugin",
"nuxtjs",
"uikit",
"uikit-components",
"uikit3",
"vue",
"vue-plugin",
"vuejs",
"vuejs-plugin",
"vuikit"
],
"scripts": {
"start": "nuxt example",
"test": "xo && ava"
},
"engines": {
"node": ">=v14.16.1"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/Nuxt-Vuikit.git"
},
"homepage": "https://TiagoDanin.github.io/Nuxt-Vuikit",
"bugs": {
"url": "https://github.com/TiagoDanin/Nuxt-Vuikit/issues"
},
"github": {
"name": "Nuxt-Vuikit",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"lib",
"package.json"
],
"dependencies": {
"@vuikit/icons": "^0.8.1",
"@vuikit/theme": "^0.8.1",
"debug": "^4.2.0",
"vuikit": "^0.8.10"
},
"devDependencies": {
"ava": "^3.13.0",
"got": "^11.8.2",
"nuxt": "^2.14.6",
"vue": "^2.6.12",
"xo": "^0.33.1"
},
"xo": {
"ignores": [
"lib/plugin.js"
],
"rules": {
"quote-props": "warn",
"eqeqeq": "warn",
"array-callback-return": "warn",
"require-atomic-updates": "warn",
"no-else-return": "off"
},
"semicolon": false
},
"documentation": "./documentation.md"
}