This repository has been archived by the owner on Dec 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
94 lines (94 loc) · 1.7 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
{
"name": "nuxt-seo",
"main": "lib/module.js",
"preferGlobal": false,
"version": "1.5.0",
"description": "SEO / HTML Meta Tags Module for Nuxt.js",
"author": {
"email": "TiagoDanin@outlook.com",
"name": "Tiago Danin",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"html-meta",
"meta",
"nuxt",
"nuxt-module",
"nuxtjs",
"seo",
"seo-meta",
"seo-optimization",
"seo-plugin",
"social-media",
"vue",
"vuejs",
"canonical"
],
"scripts": {
"start": "nuxt example",
"test": "xo && ava"
},
"engines": {
"node": ">=v14.17.0"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/Nuxt-SEO.git"
},
"homepage": "https://TiagoDanin.github.io/Nuxt-SEO",
"bugs": {
"url": "https://github.com/TiagoDanin/Nuxt-SEO/issues"
},
"github": {
"name": "Nuxt-SEO",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"lib",
"package.json"
],
"dependencies": {
"debug": "^4.2.0"
},
"devDependencies": {
"ava": "^3.15.0",
"got": "^11.8.2",
"nuxt": "^2.15.6",
"vue": "^2.6.12",
"xo": "^0.40.1"
},
"xo": {
"ignores": [
"lib/plugin.js"
],
"rules": {
"quote-props": "warn",
"eqeqeq": "warn",
"array-callback-return": "warn",
"require-atomic-updates": "warn",
"no-else-return": "off",
"ava/no-ignored-test-files": "off"
},
"semicolon": false
},
"documentation": "./docs.md",
"ava": {
"files": [
"!test/fixtures/all.js"
]
},
"resolutions": {
"yargs-parser": "^20.2.7",
"kind-of": "^6.0.3"
},
"features": [
"Easy to use",
"Canonical tag automatically generated",
"Implementation of Open Graph Protocol (ogp)",
"Compatible with npm package: debug"
]
}