-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
executable file
·88 lines (88 loc) · 2.02 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
{
"name": "@nuxtjs/sitemap",
"version": "2.4.0",
"description": "Automatically generate or serve dynamic sitemap.xml for Nuxt projects",
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"seo",
"sitemap",
"sitemap.xml",
"ssr"
],
"repository": "https://github.com/nuxt-community/sitemap-module",
"license": "MIT",
"contributors": [
{
"name": "Nicolas Pennec"
},
{
"name": "Pooya Parsa"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"build": "nuxt build test/fixture",
"dev": "nuxt test/fixture",
"format": "yarn lint --fix",
"generate": "nuxt generate test/fixture",
"lint": "eslint . --ext js,vue",
"preview": "standard-version --dry-run",
"release": "standard-version && git push --follow-tags && npm publish",
"start": "nuxt start test/fixture",
"test": "yarn lint && yarn unit",
"unit": "jest"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix"
]
},
"dependencies": {
"async-cache": "^1.1.0",
"consola": "^2.15.0",
"etag": "^1.8.1",
"fresh": "^0.5.2",
"fs-extra": "^8.1.0",
"is-https": "^2.0.2",
"lodash.unionby": "^4.8.0",
"minimatch": "^3.0.4",
"sitemap": "^4.1.1"
},
"devDependencies": {
"@babel/runtime-corejs2": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"codecov": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"husky": "latest",
"jest": "latest",
"lint-staged": "latest",
"node-fetch": "latest",
"nuxt": "latest",
"nuxt-i18n": "latest",
"prettier": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">=8.9.0",
"npm": ">=5.0.0"
},
"publishConfig": {
"access": "public"
}
}