-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
134 lines (134 loc) · 4.61 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@luxdamore/nuxt-humans-txt",
"description": "'We are people, not machines'. An initiative to know the creators of a website. Contains the information about humans to the web building - A Nuxt Module to statically integrate and generate a humans.txt author file - Based on the HumansTxt Project.",
"homepage": "https://luxdamore.github.io/nuxt-humans-txt",
"keywords": [
"nuxt-module",
"vuejs",
"nuxtjs",
"nuxt",
"modules",
"humans",
"robots",
"robots-txt",
"humans-txt",
"author",
"static"
],
"repository": {
"type": "git",
"url": "https://github.com/LuXDAmore/nuxt-humans-txt.git"
},
"bugs": {
"url": "https://github.com/LuXDAmore/nuxt-humans-txt/issues"
},
"files": [
"lib"
],
"main": "lib/module.js",
"version": "1.0.2",
"license": "MIT",
"author": "Luca Iaconelli <[email protected]> (https://lucaiaconelli.it)",
"contributors": [
{
"name": "Luca Iaconelli <[email protected]> (https://lucaiaconelli.it)"
}
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt -o src",
"build": "nuxt build src",
"preexport": "yarn build",
"export": "nuxt export src",
"prestart": "yarn build",
"start": "nuxt start src",
"generate": "nuxt generate src",
"eslint": "eslint --ext .js,.vue .",
"eslint-fix": "eslint --fix --ext .js,.vue .",
"stylelint": "stylelint src/**/*.css",
"stylelint-fix": "stylelint src/**/*.css --fix",
"lint": "yarn eslint && yarn stylelint",
"lint-fix": "yarn eslint-fix && yarn stylelint-fix",
"pretest": "yarn lint",
"test": "jest",
"release": "yarn test && yarn generate && standard-version && git push --follow-tags && yarn publish"
},
"dependencies": {
"consola": "^2.15.3",
"fs-extra": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/runtime-corejs3": "^7.13.10",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@nuxt/types": "^2.15.3",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/browserconfig": "0.0.13",
"@nuxtjs/component-cache": "^1.1.6",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/module-test-utils": "^1.6.3",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@vue/eslint-config-prettier": "latest",
"babel-eslint": "latest",
"babel-jest": "^27.2.4",
"codecov": "^3.8.1",
"core-js": "^3.9.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unicorn": "^36.0.0",
"eslint-plugin-vue": "^7.8.0",
"highlight.js": "^11.2.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"lint-staged": "^11.1.2",
"markdownlint": "^0.24.0",
"modern-normalize": "^1.0.0",
"nuxt": "^2.15.3",
"nuxt-compress": "^5.0.0",
"nuxt-jsonld": "^1.5.0",
"nuxt-start": "^2.15.3",
"prettier": "^2.2.1",
"prettier-eslint": "^13.0.0",
"prettier-stylelint": "^0.4.2",
"standard-version": "^9.1.1",
"stylelint": "^13.12.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0"
},
"lint-staged": {
"*.vue": "npm run lint",
"*.{ts,js}": "npm run eslint",
"*.{css,scss}": "npm run stylelint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}