forked from alepop/ed25519-hd-key
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.24 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
{
"name": "ed25519-hd-key",
"version": "1.3.0",
"description": "BIP-0032 like derivation for ed25519 curve",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git://github.com/alepop/ed25519-hd-key"
},
"bugs": {
"url": "https://github.com/alepop/ed25519-hd-key/issues"
},
"homepage": "https://github.com/alepop/ed25519-hd-key",
"scripts": {
"prepublish": "npm run build",
"build": "tsc -p ./",
"test": "jest"
},
"jest": {
"verbose": true,
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/spec/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"window": {},
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
}
},
"keywords": [
"ed25519",
"bip32",
"slip-0010",
"crypto",
"trezor"
],
"author": "Aleksey Popov",
"license": "MIT",
"dependencies": {
"create-hmac": "1.1.7",
"tweetnacl": "1.0.3"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@types/node": "14.0.4",
"jest": "25.5.4",
"jest-cli": "26.0.1",
"ts-jest": "25.5.1",
"typescript": "3.9.3"
}
}