forked from airswap/airswap-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 911 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
{
"name": "@airswap/utils",
"version": "4.3.3",
"description": "AirSwap: Utilities for Developers",
"repository": {
"type": "git",
"url": "https://github.com/airswap/airswap-protocols"
},
"keywords": [
"airswap"
],
"license": "MIT",
"main": "build/index.js",
"files": [
"/build"
],
"scripts": {
"clean": "rm -rf ./build",
"compile": "yarn clean && tsc -b",
"test": "TS_NODE_COMPILER_OPTIONS='{\"strict\":false}' yarn mocha -r ts-node/esm test/*.ts",
"test:ci": "TS_NODE_COMPILER_OPTIONS='{\"strict\":false}' yarn mocha -r ts-node/esm test/utils.ts"
},
"dependencies": {
"@metamask/eth-sig-util": "^5.0.2",
"@uniswap/token-lists": "^1.0.0-beta.24",
"bignumber.js": "^9.0.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"lz-string": "^1.5.0",
"valid-url": "^1.0.9"
},
"publishConfig": {
"access": "public"
}
}