forked from airswap/airswap-protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.3 KB
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
56
57
58
59
{
"name": "@airswap/libraries",
"version": "4.3.4-autonity.5",
"description": "AirSwap: Libraries for Developers",
"repository": {
"type": "git",
"url": "https://github.com/clearmatics/airswap-protocols"
},
"keywords": [
"airswap"
],
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"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": "yarn test"
},
"dependencies": {
"@airswap/batch-call": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-batch-call-4.2.3-autonity.2.tgz",
"@airswap/jsonrpc-client-websocket": "0.0.1",
"@airswap/registry": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-registry-4.2.2-autonity.2.tgz",
"@airswap/pool": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-pool-4.2.2-autonity.2.tgz",
"@airswap/staking": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-staking-4.2.2-autonity.2.tgz",
"@airswap/swap": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-swap-4.2.2-autonity.2.tgz",
"@airswap/swap-erc20": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-swap-erc20-4.3.1-autonity.2.tgz",
"@airswap/utils": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2.1/airswap-utils-4.3.2-autonity.5.tgz",
"@airswap/wrapper": "https://github.com/clearmatics/airswap-protocols/releases/download/pcgc-r6.2/airswap-wrapper-4.2.3-autonity.2.tgz",
"browser-or-node": "^2.1.1",
"ethers": "^5.7.2",
"jayson": "^4.0.0",
"tiny-typed-emitter": "^2.1.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@relaycorp/ws-mock": "^5.2.6",
"@types/mock-require": "^2.0.0",
"body-parser": "^1.20.1",
"express": "^4.18.2",
"fancy-test": "^1.4.7",
"mock-require": "^3.0.3",
"mock-socket": "^9.0.3",
"nock": "^12.0.1",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"ws": "^7.4.1"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "16.9.0"
}
}