forked from nuxt-community/sitemap-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 1.83 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
{
"name": "@nuxtjs/sitemap",
"version": "1.0.0",
"description": "Automatically generate or serve dynamic sitemap.xml for Nuxt.js projects",
"keywords": [
"nuxt",
"nuxtjs",
"sitemap",
"sitemap.xml",
"seo"
],
"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",
"generate": "nuxt generate test/fixture",
"lint": "eslint lib test",
"preview": "standard-version --dry-run",
"release": "standard-version && git push --follow-tags && npm publish",
"start": "nuxt start test/fixture",
"test": "npm run lint && npm run unit",
"unit": "jest --maxWorkers=4"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
},
"dependencies": {
"async-cache": "^1.1.0",
"consola": "^2.6.0",
"fs-extra": "^7.0.1",
"is-https": "^1.0.0",
"lodash.unionby": "^4.8.0",
"minimatch": "^3.0.4",
"sitemap": "^2.1.0"
},
"devDependencies": {
"codecov": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"husky": "latest",
"jest": "latest",
"jsdom": "latest",
"nuxt": "latest",
"standard-version": "latest"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"publishConfig": {
"access": "public"
}
}