-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "@bond-protocol/bond-library",
"version": "0.0.24",
"author": "spaceturtleship <spaceturtleship@protonmail.com>",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"main": "./dist/index.js",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@typechain/ethers-v5": "^10.0.0",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"eslint": "^8.2.0",
"install-peerdeps": "^3.0.3",
"jest": "^28.1.0",
"typechain": "^8.1.0",
"typescript": "^4.7.2"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"typechain": "typechain --target ethers-v5 --out-dir src/lp-pairs/contracts 'src/lp-pairs/abis/*.json'"
},
"dependencies": {
"axios": "^0.27.2",
"ethers": "^5.6.8"
},
"types": "./dist/index.d.ts",
"description": "Library containing off-chain metadata for BondProtocol markets, partners, tokens etc",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bond-Protocol/bond-library.git"
},
"bugs": {
"url": "https://github.com/Bond-Protocol/bond-library/issues"
},
"homepage": "https://github.com/Bond-Protocol/bond-library#readme"
}