forked from blitslabs/filecoin-js-signer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.86 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
67
{
"name": "@blitslabs/filecoin-js-signer",
"version": "1.0.6",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"scripts": {
"test": "jest",
"format": "prettier --write \"./src/**/*.ts\" \"./test/**/*.ts\" \"./**/*{.json,.md,.yaml}\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"build": "tsc"
},
"author": "Blits Labs",
"license": "MIT",
"dependencies": {
"@nodefactory/filecoin-address": "^1.0.1",
"base32-decode": "^1.0.0",
"base32-encode": "^1.2.0",
"bignumber.js": "^9.0.1",
"bip32": "^2.0.6",
"blake2b": "^2.1.3",
"blakejs": "^1.1.0",
"bn.js": "^5.2.0",
"filecoin.js": "^0.0.5-alpha",
"ipld-dag-cbor": "github:blitslabs/js-ipld-dag-cbor",
"leb128": "^0.0.5",
"lowercase-keys": "^1.0.1",
"multihashing-async": "^2.1.2",
"secp256k1": "^4.0.2"
},
"devDependencies": {
"@blits-labs/filecoin-signing-tools": "^0.2.4",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"dotenv": "^9.0.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blitslabs/filecoin-js-signer.git"
},
"keywords": [
"filecoin",
"fil",
"signer",
"blits",
"blitslabs"
],
"bugs": {
"url": "https://github.com/blitslabs/filecoin-js-signer/issues"
},
"homepage": "https://github.com/blitslabs/filecoin-js-signer#readme",
"description": ""
}