-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
{
"name": "@alepop/lisk-musig",
"version": "0.1.2",
"description": "Three round m-of-m key aggregation for Lisk using the MuSig signature scheme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"jest": {
"verbose": true,
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/spec/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"window": {},
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
}
},
"keywords": [
"ed25519",
"muSig",
"lisk",
"crypto"
],
"author": "Aleksey Popov",
"repository": {
"type": "git",
"url": "git+https://github.com/alepop/lisk-musig.git"
},
"bugs": {
"url": "https://github.com/alepop/lisk-musig.git/issues"
},
"homepage": "https://github.com/alepop/lisk-musig.git",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.2",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"@futuretense/ed25519-musig": "^0.0.5",
"@liskhq/lisk-cryptography": "^2.4.2",
"@liskhq/lisk-transactions": "^3.0.2"
}
}