-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "@web3pack/base58-check",
"version": "1.0.3",
"description": "A modern base58-check encoding library implemented in TypeScript with minimal dependencies for use in browser and Node.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"base58",
"base58check",
"base58-check",
"checksum",
"encode",
"encoding",
"decode",
"decoding",
"crypto",
"crytography"
],
"author": "Evren Ceyhan",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Web3Pack/base58-check.git"
},
"bugs": {
"url": "https://github.com/Web3Pack/base58-check/issues"
},
"homepage": "https://github.com/Web3Pack/base58-check#readme",
"scripts": {
"build": "npm run clean & tsc",
"clean": "rm -rf ./dist",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build & npm run test"
},
"dependencies": {
"@web3pack/base-x": "^1.0.1",
"buffer": "^6.0.3",
"hash.js": "^1.1.7"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}