-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.06 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
{
"name": "keylab",
"version": "0.1.32",
"source": "src/index.ts",
"main": "dist/index.js",
"description": "keylab is a library aiming to create and validate JSON Web Tokens without hussle or prerequisitie cryptography knowledge.",
"scripts": {
"test": "jest",
"test-with-coverage": "jest --collect-coverage",
"pretty": "npx prettier --write src",
"docs:dev": "pnpm --cwd docs start",
"docs:build-i18n": "ts-node scripts/build-i18n-docs",
"docs:deploy": "GIT_USER=dbrrt USE_SSH=true pnpm --cwd docs deploy",
"tsdoc:build": "typedoc --out tsdoc lib",
"tsdoc:deploy": "NETLIFY_SITE_ID=7a9aa5c4-6218-4d61-b482-999b3a32f38a netlify deploy --dir=tsdoc --prod",
"tsdoc:netlify": "pnpm tsdoc:build && pnpm tsdoc:deploy",
"size": "node scripts/file-size ./dist/index.js ./dist/index.js.map",
"lib:build:clean": "rm -rf pkg",
"build": "pnpm lib:build:clean && tsup src/index.ts",
"lib:publish": "pnpm build && pnpm publish --no-git-checks",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/authdog/keylab.git",
"author": "Authdog"
},
"keywords": [
"jwt",
"jwks",
"authentication",
"security",
"openid",
"token",
"jose"
],
"author": "dbrrt",
"license": "MIT",
"bugs": {
"url": "https://github.com/authdog/keylab/issues"
},
"homepage": "https://github.com/authdog/keylab#readme",
"devDependencies": {
"@swc/core": "^1.3.25",
"@types/jest": "^27.4.1",
"@types/node": "^16.0.0",
"codecov": "^3.8.3",
"husky": "^7.0.0",
"jest": "^27.0.6",
"nock": "^13.4.0",
"node-fetch": "2.7.0",
"prettier": "2.3.2",
"raw-loader": "^4.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"tsup": "^6.5.0",
"typedoc": "^0.21.3",
"typescript": "^4.3.5"
},
"dependencies": {
"jose": "^5.2.1"
}
}