-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "jwt-falcon",
"type": "module",
"version": "0.0.12",
"description": "A lightweight JavaScript library for generating and verifying JSON Web Tokens (JWT) using the Falcon cryptographic algorithm, a lattice-based signature scheme that is post-quantum (PQ) proof and resistant to attacks from quantum computers.",
"main": "dist/index.js",
"files": [
"dist/*"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "node --test src",
"buildPackage": "cp -r src dist;rm dist/*.test.js;rm dist/test-utils.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnb8005/jwt-ntru.git"
},
"keywords": [
"jwt",
"ntru",
"falcon",
"post-quantum",
"lattice-based",
"signature",
"cryptography",
"encryption",
"authentication",
"authorization",
"json web token",
"pq-proof",
"quantum-resistant"
],
"author": "Johan",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnb8005/jwt-ntru/issues"
},
"homepage": "https://github.com/johnb8005/jwt-ntru#readme",
"dependencies": {
"falcon-crypto": "^1.0.6"
},
"devDependencies": {
"jsonwebtoken": "^9.0.2"
}
}