-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "stratis-sdk",
"version": "1.0.0",
"description": "stratis typescript sdk",
"main": "dist/index.ts",
"files": [
"dist",
"src/types/index.d.ts"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"author": {
"name": "Daniel Novacik",
"email": "[email protected]",
"url": "https://github.com/dnovacik"
},
"license": "MIT",
"dependencies": {
"bcrypto": "^5.4.0",
"bip32": "^2.0.6",
"bip39": "^3.0.3",
"bs58check": "^2.1.2",
"bstring": "^0.3.9",
"buffer-xor": "^2.0.2",
"bytebuffer": "^5.0.1",
"fast-memoize": "^2.5.2",
"pbkdf2": "^3.1.1",
"wif": "^2.0.6"
},
"devDependencies": {
"@types/bip32": "^2.0.0",
"@types/bip39": "^3.0.0",
"@types/buffer-xor": "^2.0.0",
"@types/jest": "^26.0.20",
"@types/pbkdf2": "^3.1.0",
"@types/wif": "^2.0.2",
"big-integer": "^1.6.48",
"buffer-es6": "^4.9.3",
"jest": "^26.6.3",
"process-es6": "^0.11.6",
"ts-jest": "^26.5.1",
"typescript": "^4.1.4"
}
}