-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.29 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
{
"name": "@maximemrf/adonisjs-jwt",
"description": "Adonisjs v6 package for authentication with jwt token",
"version": "0.2.2",
"engines": {
"node": ">=20.6.0"
},
"type": "module",
"files": [
"build/src",
"build/stubs",
"build/index.d.ts",
"build/index.js"
],
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js",
"./jwt_config": "./build/src/define_config.js"
},
"scripts": {
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts",
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"prebuild": "npm run lint && npm run clean",
"build": "tsc",
"postbuild": "npm run copy:templates",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@adonisjs/assembler": "^7.2.3",
"@adonisjs/auth": "^9.1.1",
"@adonisjs/core": "^6.3.1",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/lucid": "^20.5.1",
"@adonisjs/prettier-config": "^1.3.0",
"@adonisjs/tsconfig": "^1.3.0",
"@japa/assert": "^2.1.0",
"@japa/runner": "^3.1.1",
"@swc/core": "^1.4.6",
"@types/node": "^20.11.25",
"c8": "^9.1.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"luxon": "^3.4.4",
"np": "^10.0.0",
"prettier": "^3.2.5",
"timekeeper": "^2.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.6",
"jsonwebtoken": "^9.0.2"
},
"peerDependencies": {
"@adonisjs/core": "^6.2.0"
},
"author": "MaximeMRF",
"license": "MIT",
"keywords": [
"adonisjs",
"adonis",
"jwt",
"authentication"
],
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
}
}