-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 925 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
{
"name": "@multiversx/sdk-transaction-processor",
"version": "0.1.35",
"description": "Real-time transaction processor",
"main": "lib/transaction.processor.js",
"types": "lib/transaction.processor.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiversx/mx-sdk-transaction-processor.git"
},
"keywords": [
"multiversx",
"transaction",
"processor"
],
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"eslint": "^8.9.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^1.7.4"
}
}