forked from auth0/nextjs-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.36 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
{
"name": "faisalil-nextjs-auth0",
"version": "0.5.5",
"description": "Next.js SDK for signing in with Auth0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.browser.js",
"directories": {
"test": "tests"
},
"engines": {
"node": "^10.13.0 || >=12.0.0"
},
"scripts": {
"clean": "rimraf dist",
"pretty": "prettier --write \"src/**/*.ts\" \"src/*.ts\"",
"lint": "eslint --fix --ext .ts ./src",
"build": "tsc -p tsconfig.build.json",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"prepublishOnly": "npm test && npm run lint",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0/nextjs-auth0.git"
},
"keywords": [
"auth0",
"next.js",
"react",
"oidc",
"authentication",
"zeit"
],
"author": "Auth0 (https://auth0.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/nextjs-auth0/issues"
},
"homepage": "https://github.com/auth0/nextjs-auth0#readme",
"devDependencies": {
"@panva/jose": "^1.9.2",
"@types/cookie": "^0.3.3",
"@types/hapi__iron": "^5.1.0",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.4",
"@types/node": "^12.7.12",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/request": "^2.48.3",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"next": "^9.1.1",
"nock": "^11.6.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"timekeeper": "^2.2.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {
"@hapi/iron": "^5.1.4",
"base64url": "^3.0.1",
"cookie": "^0.4.0",
"openid-client": "^3.7.4"
},
"peerDependencies": {
"next": "^9.0.5"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./",
"moduleFileExtensions": [
"ts",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/",
"./jest.config.js"
],
"coverageReporters": [
"lcov",
"text",
"text-summary"
],
"preset": "ts-jest"
}
}