-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.86 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
{
"name": "@buttonwood/sdk",
"version": "1.0.75",
"description": "Typescript SDK for the Buttonwood Protocol",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/buttonwood-protocol/sdk.git"
},
"author": "Mark Toda <[email protected]>",
"license": "GPL-3.0-or-later",
"scripts": {
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "yarn eslint && yarn prettier:list-different",
"lint:fix": "yarn eslint:fix && yarn prettier",
"eslint": "eslint . --ext .ts,.tsx",
"eslint:fix": "eslint . --fix --ext .ts,.tsx",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{js,json,md,sol,ts}\"",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@uniswap/sdk-core": "^3.0.1",
"@uniswap/v2-sdk": "^3.0.1",
"@uniswap/v3-sdk": "^3.3.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"ethers": "^5.4.3",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0"
},
"bugs": {
"url": "https://github.com/buttonwood-protocol/sdk/issues"
},
"homepage": "https://github.com/buttonwood-protocol/sdk#readme",
"directories": {
"test": "test"
}
}