-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "sjwt",
"version": "1.0.15",
"description": "The EASY and FAST authentication service",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"type": "module",
"scripts": {
"check-version": "node ./checkVersion.cjs",
"build": "unbuild",
"lint": "eslint .",
"test": "vitest",
"test-watch": "vitest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simple-JWT/sjwt.git"
},
"keywords": [
"sjwt",
"simplejwt",
"jwt",
"authentication",
"users"
],
"author": "Jonathan Walters <jon.jdw.me@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Simple-JWT/sjwt/issues"
},
"homepage": "https://simplejwt.com",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-vitest": "^0.3.20",
"unbuild": "^2.0.0",
"vitest": "^1.1.0"
}
}