UNPKG

1.93 kBJSONView Raw
1{
2 "name": "jose",
3 "version": "1.27.3",
4 "description": "JSON Web Almost Everything - JWA, JWS, JWE, JWK, JWT, JWKS for Node.js with minimal dependencies",
5 "keywords": [
6 "access token",
7 "access_token",
8 "compact",
9 "decode",
10 "decrypt",
11 "detached",
12 "ec",
13 "ecdsa",
14 "eddsa",
15 "electron",
16 "embedded",
17 "encrypt",
18 "flattened",
19 "general",
20 "id token",
21 "id_token",
22 "jose",
23 "json web token",
24 "jsonwebtoken",
25 "jwa",
26 "jwe",
27 "jwk",
28 "jwks",
29 "jws",
30 "jwt",
31 "logout token",
32 "logout_token",
33 "oct",
34 "okp",
35 "payload",
36 "rsa",
37 "secp256k1",
38 "sign",
39 "signature",
40 "validate",
41 "verify"
42 ],
43 "homepage": "https://github.com/panva/jose",
44 "repository": "panva/jose",
45 "funding": "https://github.com/sponsors/panva",
46 "license": "MIT",
47 "author": "Filip Skokan <panva.ip@gmail.com>",
48 "files": [
49 "lib/**/*.js",
50 "LICENSE_THIRD_PARTY",
51 "types/index.d.ts"
52 ],
53 "main": "lib/index.js",
54 "types": "types/index.d.ts",
55 "scripts": {
56 "coverage": "c8 ava",
57 "lint": "standard",
58 "lint-ts": "npx typescript@~3.6.0 --build types",
59 "lint-fix": "standard --fix",
60 "test": "ava",
61 "watch": "ava --watch"
62 },
63 "husky": {
64 "hooks": {
65 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
66 }
67 },
68 "commitlint": {
69 "extends": [
70 "@commitlint/config-conventional"
71 ]
72 },
73 "ava": {
74 "babel": false,
75 "compileEnhancements": false,
76 "files": [
77 "test/**/*.test.js"
78 ]
79 },
80 "dependencies": {
81 "@panva/asn1.js": "^1.0.0"
82 },
83 "devDependencies": {
84 "@commitlint/cli": "^9.1.1",
85 "@commitlint/config-conventional": "^9.1.1",
86 "ava": "^2.4.0",
87 "babel-eslint": "^10.0.3",
88 "c8": "^7.2.1",
89 "husky": "^4.0.0",
90 "standard": "^14.3.1"
91 },
92 "engines": {
93 "node": ">=10.13.0"
94 },
95 "standard": {
96 "parser": "babel-eslint"
97 }
98}