commit initial framework
parents
Showing
.eslintrc
0 → 100644
.gitignore
0 → 100644
.prettierrc
0 → 100644
.travis.yml
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
jest.config.js
0 → 100644
package.json
0 → 100644
{ | ||
"name": "@uniswap/sdk", | ||
"version": "1.0.0-beta.0", | ||
"description": "An SDK for building applications on top of the Uniswap exchange protocol.", | ||
"keywords": [ | ||
"Uniswap", | ||
"Ethereum", | ||
"SDK" | ||
], | ||
"main": "./dist/index.js", | ||
"scripts": { | ||
"lint:base": "yarn eslint './src/**/*.ts'", | ||
"format:base": "yarn prettier './src/**/*.ts'", | ||
"fix:lint": "yarn lint:base --fix", | ||
"fix:format": "yarn format:base --write", | ||
"fix:all": "yarn fix:lint && yarn fix:format", | ||
"check:lint": "yarn lint:base", | ||
"check:format": "yarn format:base --check", | ||
"check:all": "yarn check:lint && yarn check:format", | ||
"prebuild": "rm -rf dist/", | ||
"build": "tsc", | ||
"watch": "yarn prebuild && tsc --watch", | ||
"test": "jest", | ||
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Uniswap/uniswap-sdk.git" | ||
}, | ||
"author": "Noah Zinsmeister <noahwz@gmail.com>", | ||
"license": "GPL-3.0-or-later", | ||
"devDependencies": { | ||
"@types/jest": "^24.0.13", | ||
"@typescript-eslint/eslint-plugin": "^1.9.0", | ||
"@typescript-eslint/parser": "^1.9.0", | ||
"coveralls": "^3.0.3", | ||
"eslint": "^5.16.0", | ||
"eslint-config-prettier": "^4.3.0", | ||
"jest": "^24.8.0", | ||
"prettier": "^1.17.1", | ||
"ts-jest": "^24.0.2", | ||
"typescript": "^3.4.5" | ||
}, | ||
"dependencies": { | ||
"bignumber.js": "^9.0.0", | ||
"ethers": "^4.0.28" | ||
} | ||
} |
src/__tests__/computation.ts
0 → 100644
src/__tests__/data.ts
0 → 100644
src/__tests__/format.ts
0 → 100644
src/__tests__/utils/index.ts
0 → 100644
src/computation.ts
0 → 100644
src/constants/index.ts
0 → 100644
src/data.ts
0 → 100644
src/format.ts
0 → 100644
src/index.ts
0 → 100644
src/types/index.ts
0 → 100644
src/utils/index.ts
0 → 100644
tsconfig.json
0 → 100644
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment