forked from nuxt-modules/security
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.94 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
{
"name": "nuxt-security",
"version": "0.14.3",
"license": "MIT",
"type": "module",
"homepage": "https://nuxt-security.vercel.app",
"description": "🛡 Security Module for Nuxt based on OWASP Top 10 and Helmet",
"repository": {
"url": "https://github.com/Baroshem/nuxt-security"
},
"keywords": [
"nuxt",
"vue",
"security",
"owasp",
"helmet",
"basic-auth",
"rate-limit",
"xss",
"cors",
"request-size-limit",
"allowed-http-methods",
"csrf"
],
"exports": {
".": {
"types": "./dist/module.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxt-module-build --stub && nuxi prepare playground && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:start": "nuxi start playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"lint": "eslint --ext .js,.ts,.vue",
"test": "vitest run --silent",
"test:watch": "vitest watch",
"docs": "cd docs && yarn dev",
"preview": "nuxi preview playground",
"stackblitz": "cd .stackblitz && yarn && yarn dev"
},
"dependencies": {
"@nuxt/kit": "^3.2.2",
"basic-auth": "^2.0.1",
"defu": "^6.1.1",
"limiter": "^2.1.0",
"memory-cache": "^0.2.0",
"nuxt-csurf": "^1.1.0",
"pathe": "^1.0.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/schema": "^3.2.2",
"@nuxtjs/eslint-config-typescript": "latest",
"@nuxt/test-utils": "^3.2.2",
"@types/memory-cache": "^0.2.2",
"@types/node": "^18.14.4",
"eslint": "latest",
"nuxt": "^3.2.2",
"vitest": "^0.28.5"
},
"stackblitz": {
"installDependencies": false,
"startCommand": "yarn stackblitz"
}
}