-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
64
65
66
{
"name": "djwt",
"version": "1.1.0",
"description": "A JWT Library with blockchain key based signing for JWS.",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepublish:public:patch": "npm run build",
"prepublish:public:minor": "npm run build",
"publish:public:patch": "npm version patch --force && npm publish --access public",
"publish:public:minor": "npm version minor --force && npm publish --access public",
"publish:public": "npm run publish:public:patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amany9000/dJWT.git"
},
"keywords": [
"blockchain",
"jwt",
"ethereum",
"bitcoin",
"polkadot",
"jws",
"signature"
],
"author": "amany9000",
"license": "MIT",
"bugs": {
"url": "https://github.com/amany9000/dJWT/issues"
},
"homepage": "https://github.com/amany9000/dJWT#readme",
"dependencies": {
"buffer": "^6.0.3",
"ms": "^2.1.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@metamask/eth-sig-util": "^7.0.0",
"@polkadot/keyring": "^12.5.1",
"@polkadot/util-crypto": "^12.5.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "11.1.5",
"@truffle/hdwallet-provider": "^2.1.15",
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.196",
"@types/ms": "^0.7.31",
"@types/node": "^20.4.5",
"bitcoinjs-message": "^2.2.0",
"ecpair": "^2.1.0",
"ethers": "^6.7.1",
"jest": "^29.7.0",
"rollup": "^3.29.4",
"tiny-secp256k1": "^2.2.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"web3": "^4.1.2"
}
}