forked from blockchain-certificates/did-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1021 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
{
"name": "did-blockcerts-poc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate:keyPair": "npx ts-node key-management/generateKeyPair.ts",
"transferFunds": "npx ts-node accounts/transfer.ts",
"resolve": "npx ts-node resolvers/resolveDID.ts"
},
"author": "Julien Fraichot",
"license": "ISC",
"dependencies": {
"@decentralized-identity/ion-tools": "0.0.8",
"@transmute/did-key-secp256k1": "^0.2.1-unstable.42",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^5.2.0",
"btoa": "^1.2.1",
"did-ipid": "^0.4.1",
"elliptic": "^6.5.4",
"ipfs-core": "^0.7.1",
"js-sha3": "^0.8.0",
"keccak": "^3.0.2",
"key-encoder": "^2.0.3",
"libp2p-crypto": "^0.19.4",
"peer-id": "^0.14.8",
"secp256k1": "^4.0.2",
"web3": "^1.3.6",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}