-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "@biconomy/hyphen",
"version": "1.1.6",
"description": "Hyphen SDK to enable instant and seamless cross-chain deposits & withdrawals",
"main": "dist/hyphen/index.js",
"types": "dist/hyphen/index.d.ts",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"test:unit": "jest --coverage test/unit",
"test:e2e": "jest --forceExit --silent test/e2e/",
"test": "yarn test:unit && yarn test:e2e",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bcnmy/hyphen-sdk.git"
},
"keywords": [
"hyphen",
"sdk",
"cross-chain",
"transfers",
"ERC20"
],
"author": "Sachin Tomar",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcnmy/hyphen-sdk/issues"
},
"homepage": "https://github.com/bcnmy/hyphen-sdk#readme",
"files": [
"*.js",
"/dist/**/*.js",
"/dist/*.js",
"/dist/**/*.d.ts",
"/dist/abi/*.json"
],
"dependencies": {
"@biconomy/mexa": "^2.0.24",
"cross-fetch": "^3.1.5",
"ethers": "^5.0.24",
"promise": "^8.0.3",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^14.14.25",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0"
}
}