-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.85 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": "two-party-ecdsa-nodejs",
"version": "1.1.12",
"description": "two party ecdsa implemented in nodejs",
"author": "wyann008",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"compile": "tsc",
"prebuild": "rimraf dist",
"build": "tsc --declarationDir dist -d --emitDeclarationOnly --allowJs false && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WYANG008/two-party-ecdsa-nodejs.git"
},
"keywords": [
"ecdsa"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/WYANG008/two-party-ecdsa-nodejs/issues"
},
"homepage": "https://github.com/WYANG008/two-party-ecdsa-nodejs#readme",
"dependencies": {
"bigint-conversion": "^2.1.12",
"bigint-mod-arith": "^3.0.1",
"bn.js": "^5.1.3",
"elliptic": "^6.5.3",
"eth-lib": "^0.1.29",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.2",
"ethers": "^5.4.7",
"keccak256": "^1.0.2",
"minimalistic-crypto-utils": "^1.0.1",
"secp256k1": "^4.0.2",
"web3": "^1.3.3"
},
"devDependencies": {
"@babel/polyfill": "^7.4.4",
"@types/bn.js": "^5.1.0",
"@types/elliptic": "^6.4.12",
"@types/ethereumjs-tx": "^2.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"@types/secp256k1": "^4.0.1",
"@types/sinon": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"coveralls": "^3.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"ganache-core": "^2.13.2",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"ts-jest": "^26.4.4",
"ts-node": "^10.2.1",
"tslint": "^5.20.1",
"typescript": "^4.1.3"
}
}