-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 1.73 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
{
"name": "nuxt-helmet",
"version": "2.1.0",
"description": "Helmet for nuxt",
"license": "MIT",
"contributors": [
{
"name": "Victor Perez <[email protected]>"
}
],
"main": "lib/module.js",
"publishConfig": {
"access": "public"
},
"keywords": [
"security",
"headers",
"helmet",
"helmet.js",
"nuxt",
"nuxtjs",
"nuxt.js",
"x-frame-options",
"csp",
"hsts",
"clickjack"
],
"scripts": {
"dev": "nuxt example",
"lint": "eslint lib test",
"test": "yarn lint && rimraf ./.nuxt && jest",
"release": "semantic-release",
"commit": "npx git-cz"
},
"files": [
"lib"
],
"dependencies": {
"consola": "^2.11.3",
"helmet": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.8",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@nuxtjs/eslint-config": "^8.0.0",
"babel-jest": "^27.4.6",
"codecov": "^3.6.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.3.0",
"get-port": "5.x",
"got": "11.x",
"husky": "^4.2.3",
"jest": "^27.4.7",
"nuxt": "^2.12.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/victor-perez/nuxt-helmet.git"
}
}