This repository has been archived by the owner on Aug 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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
{
"name": "@lisk-builders/lisk-hd-key",
"version": "2.0.1",
"description": "HD key derivation for Lisk coin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p ./",
"test:ci": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --watch --verbose"
},
"jest": {
"verbose": true,
"mapCoverage": true,
"transform": {
".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/spec/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"window": {},
"ts-jest": {
"tsConfigFile": "./tsconfig.json"
}
}
},
"keywords": [
"ed25519",
"bip32",
"lisk",
"lisk-elements",
"crypto",
"hdkeys",
"hdwallet"
],
"author": "Aleksey Popov",
"license": "GPL-3",
"repository": {
"type": "git",
"url": "git+https://github.com/lisk-builders/lisk-hd-key.git"
},
"bugs": {
"url": "https://github.com/lisk-builders/lisk-hd-key/issues"
},
"homepage": "https://github.com/lisk-builders/lisk-hd-key",
"devDependencies": {
"@types/jest": "27.0.1",
"coveralls": "^3.1.1",
"jest-cli": "27.1.0",
"ts-jest": "27.0.5",
"typescript": "4.4.2"
},
"dependencies": {
"@liskhq/lisk-cryptography": "^3.1.0",
"@liskhq/lisk-transactions": "^5.1.1",
"@types/node": "^16.7.10",
"ed25519-hd-key": "^1.2.0"
}
}