-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.46 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
67
68
69
70
71
{
"name": "@balancer-labs/sdk",
"version": "0.0.14",
"description": "JavaScript SDK for interacting with the Balancer Protocol V2",
"license": "GPL-3.0-only",
"homepage": "https://github.com/balancer-labs/balancer-sdk/balancer-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/balancer-labs/balancer-sdk",
"directory": "balancer-js"
},
"bugs": {
"url": "https://github.com/balancer-labs/balancer-sdk/issues"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "TS_NODE_PROJECT='tsconfig.testing.json' mocha --extension test.ts -r ts-node/register --recursive",
"lint": "eslint ./src --ext .ts --max-warnings 0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@typechain/ethers-v5": "^7.0.1",
"@types/chai": "^4.2.12",
"@types/lodash": "^4.14.177",
"@types/mocha": "^8.0.3",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"eslint": "^7.9.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"rollup": "^2.52.8",
"rollup-plugin-dts": "^3.0.2",
"tiny-invariant": "^1.1.0",
"ts-node": "^10.0.0",
"typechain": "^5.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"@balancer-labs/sor": "github:wavelength-velas/balancer-sor",
"@ethersproject/abi": "^5.5.0",
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@ethersproject/abi": "^5.4.0",
"@ethersproject/abstract-signer": "^5.4.0",
"@ethersproject/address": "^5.4.0",
"@ethersproject/bignumber": "^5.4.0",
"@ethersproject/bytes": "^5.4.0",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/contracts": "^5.4.0"
}
}