forked from Zondax/filecoin-signing-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 857 Bytes
/
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
{
"name": "@zondax/example-filecoin-wasm-node",
"author": "Zondax GmbH",
"license": "Apache-2.0",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha -r esm --exclude test/test_only_js.js",
"test:js": "PURE_JS=True mocha -r esm",
"test:spec": "mocha test/test.spec.js",
"test:pc": "node payment_channel.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zondax/filecoin-signing-tools"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"filecoin"
],
"dependencies": {
"axios": "^1.4.0",
"cids": "^1.1.9",
"esm": "^3.2.25",
"tiny-secp256k1": "^2.2.1"
},
"devDependencies": {
"bip32": "^4.0.0",
"bip39": "^3.0.4",
"blakejs": "^1.2.1",
"mocha": "^10.2.0",
"secp256k1": "^5.0.0"
}
}