forked from bcnmy/mexa-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1003 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
41
42
43
{
"name": "@biconomy/mexa",
"version": "1.5.10",
"description": "Mexa SDK to enable meta transaction in your DApps",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify ./src/index.js -o ./dist/mexa.js -p esmify -s Biconomy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcnmy/mexa-sdk.git"
},
"keywords": [
"mexa",
"sdk",
"meta-transactions",
"gasless",
"transactions"
],
"author": "Sachin Tomar",
"license": "ISC",
"bugs": {
"url": "https://github.com/bcnmy/mexa-sdk/issues"
},
"homepage": "https://github.com/bcnmy/mexa-sdk#readme",
"files": [
"*.js",
"/dist/*.js"
],
"dependencies": {
"abi-decoder": "^2.2.2",
"ethereum-tx-decoder": "^3.0.0",
"events": "^3.0.0",
"node-fetch": "^2.6.0",
"promise": "^8.0.3",
"web3": "^1.2.1"
},
"devDependencies": {
"browserify": "^16.5.0",
"esmify": "^2.1.1"
}
}