UNPKG

1.92 kBJSONView Raw
1{
2 "name": "jose",
3 "version": "1.25.2",
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 "encrypt",
17 "flattened",
18 "general",
19 "id token",
20 "id_token",
21 "jose",
22 "json web token",
23 "jsonwebtoken",
24 "jwa",
25 "jwe",
26 "jwk",
27 "jwks",
28 "jws",
29 "jwt",
30 "logout token",
31 "logout_token",
32 "oct",
33 "okp",
34 "payload",
35 "rsa",
36 "secp256k1",
37 "sign",
38 "signature",
39 "validate",
40 "verify"
41 ],
42 "homepage": "https://github.com/panva/jose",
43 "repository": "panva/jose",
44 "funding": "https://github.com/sponsors/panva",
45 "license": "MIT",
46 "author": "Filip Skokan <panva.ip@gmail.com>",
47 "files": [
48 "lib/**/*.js",
49 "LICENSE_THIRD_PARTY",
50 "types/index.d.ts"
51 ],
52 "main": "lib/index.js",
53 "types": "types/index.d.ts",
54 "scripts": {
55 "coverage": "c8 ava",
56 "lint": "standard",
57 "lint-ts": "npx typescript@~3.6.0 --build types",
58 "lint-fix": "standard --fix",
59 "test": "ava",
60 "watch": "ava --watch"
61 },
62 "husky": {
63 "hooks": {
64 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
65 }
66 },
67 "commitlint": {
68 "extends": [
69 "@commitlint/config-conventional"
70 ]
71 },
72 "ava": {
73 "babel": false,
74 "compileEnhancements": false,
75 "files": [
76 "test/**/*.test.js"
77 ]
78 },
79 "dependencies": {
80 "@panva/asn1.js": "^1.0.0"
81 },
82 "devDependencies": {
83 "@commitlint/cli": "^8.3.4",
84 "@commitlint/config-conventional": "^8.3.4",
85 "ava": "^2.4.0",
86 "babel-eslint": "^10.0.3",
87 "c8": "^7.0.0",
88 "husky": "^4.0.0",
89 "standard": "^14.3.1"
90 },
91 "engines": {
92 "node": ">=10.13.0"
93 },
94 "standard": {
95 "parser": "babel-eslint"
96 }
97}