-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@airswap/libraries",
"version": "5.0.10-beta.0",
"description": "AirSwap: Libraries for Developers",
"repository": {
"type": "git",
"url": "https://github.com/airswap/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": "5.0.1",
"@airswap/delegate": "5.0.3-beta.0",
"@airswap/jsonrpc-client-websocket": "0.0.1",
"@airswap/pool": "5.0.1",
"@airswap/registry": "5.0.1",
"@airswap/staking": "5.0.1",
"@airswap/swap": "5.0.1",
"@airswap/swap-erc20": "5.0.1",
"@airswap/utils": "5.0.5",
"@airswap/wrapper": "5.0.1",
"browser-or-node": "^2.1.1",
"ethers": "^5.7.2",
"jayson": "^4.0.0",
"registry-v3": "npm:@airswap/[email protected]",
"tiny-typed-emitter": "^2.1.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@relaycorp/ws-mock": "^5.2.6",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/mock-require": "^2.0.0",
"body-parser": "^1.20.1",
"chai": "^4.0.0",
"express": "^4.18.2",
"fancy-test": "^1.4.7",
"mocha": "^10.8.2",
"mock-require": "^3.0.3",
"mock-socket": "^9.0.3",
"nock": "^12.0.1",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"typescript": "^5.0.4",
"ws": "^7.4.1"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "16.9.0"
}
}