-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "starkbank",
"version": "2.29.1",
"description": "SDK to facilitate Node integrations with Stark Bank",
"main": "index.js",
"types": "types/index.d.ts",
"directories": {
"lib": "sdk",
"test": "tests"
},
"files": [
"sdk",
"types"
],
"scripts": {
"test": "mocha tests --timeout 20000",
"test:typescript": "npx jest ./testTypes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starkbank/sdk-node.git"
},
"keywords": [
"ecdsa",
"signature",
"sdk",
"stark",
"starkbank",
"openbanking"
],
"author": "Stark Bank",
"license": "MIT",
"bugs": {
"url": "https://github.com/starkbank/sdk-node/issues"
},
"homepage": "https://github.com/starkbank/ecdsa-node#readme",
"dependencies": {
"axios": "^1.6.2",
"starkbank-ecdsa": "^1.1.5",
"starkcore": "^0.1.3"
},
"devDependencies": {
"@types/jest": "^28.1.3",
"@types/node": "^17.0.42",
"jest": "^28.1.1",
"mocha": "^9.1.3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"utf8": "^3.0.0"
}
}