forked from ensdomains/address-encoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "@ensdomains/address-encoder",
"version": "0.2.18",
"description": "Encodes and decodes address formats for various cryptocurrencies",
"source": "src/index.ts",
"main": "lib/index.js",
"module": "lib/index.module.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "microbundle",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "yarn build",
"prepublishOnly": "yarn build",
"pub": "yarn publish --access public",
"size": "browserify lib/index.js | wc -c",
"test": "jest --config jestconfig.json"
},
"files": [
"lib/**/*"
],
"keywords": [
"blockchain",
"cryptocurrency",
"bitcoin",
"ethereum",
"encoding"
],
"author": "Nick Johnson <[email protected]>",
"license": "BSD",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"@types/ripemd160": "^2.0.0",
"browserify": "^16.5.0",
"jest": "^26.4.2",
"microbundle": "^0.12.4",
"prettier": "^1.18.2",
"ts-jest": "^26.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.2"
},
"dependencies": {
"bech32": "^2.0.0",
"blakejs": "^1.1.0",
"bn.js": "^4.11.8",
"bs58": "^4.0.1",
"crypto-addr-codec": "^0.1.7",
"js-crc": "^0.2.0",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"nano-base32": "^1.0.1",
"ripemd160": "^2.0.2",
"sha3": "^2.1.3"
}
}