forked from paulo-stark/ecdsa-node-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 887 Bytes
/
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
{
"name": "starkbank-ecdsa",
"version": "1.1.4",
"description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
"main": "index.js",
"directories": {
"lib": "ellipticcurve",
"test": "test"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkbank/ecdsa-node.git"
},
"keywords": [
"ecdsa",
"signature",
"fast",
"jacobian",
"stark",
"starkbank",
"openbanking"
],
"author": "Stark Bank",
"license": "MIT License",
"bugs": {
"url": "https://github.com/starkbank/ecdsa-node/issues"
},
"homepage": "https://github.com/starkbank/ecdsa-node#readme",
"dependencies": {
"big-integer": "^1.6.48",
"buffer": "^5.6.0",
"expo-crypto": "~12.4.1"
},
"devDependencies": {
"mocha": "^9.1.3"
}
}