-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "yet-another-nuxt-oauth2",
"version": "2.0.0",
"description": "Nuxt OAuth2 module",
"main": "lib/module.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "jest --watch",
"test": "jest --coverage --forceExit",
"lint": "eslint --ext=.js lib test cypress",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run --record --parallel",
"cypress:ci": "start-server-and-test cypress:nuxt http://localhost:3000 cypress:run",
"cypress:nuxt": "nuxt cypress/fixtures/nuxt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuxChanLu/yet-another-nuxt-oauth2.git"
},
"keywords": [
"nuxt",
"oauth2",
"ssr",
"refresh",
"openid"
],
"author": "Hugo Meyronneinc <hugo@lxc.lu>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LuxChanLu/yet-another-nuxt-oauth2/issues"
},
"homepage": "https://github.com/LuxChanLu/yet-another-nuxt-oauth2#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/cypress/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/cypress/"
]
},
"engines": {
"node": ">= 8.x.x"
},
"dependencies": {
"@ungap/url-search-params": "^0.2.2",
"assign-deep": "^1.0.1",
"cookie-universal": "^2.2.2",
"is-https": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"keyv": "^4.5.2",
"node-fetch": "^3.3.0",
"qs": "^6.11.0"
},
"devDependencies": {
"@keyv/redis": "^2.5.4",
"start-server-and-test": "^1.15.2",
"nuxt": "^3.0.0",
"@types/jest": "^29.2.4",
"coveralls": "^3.1.1",
"cypress": "^12.2.0",
"eslint": "^8.30.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^27.1.7",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"oauth2-mock-server": "^5.0.1"
}
}