1 | {
|
2 | "name": "@uniswap/v2-core",
|
3 | "description": "🎛 Core contracts for the UniswapV2 protocol",
|
4 | "version": "1.0.1",
|
5 | "homepage": "https://uniswap.org",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "https://github.com/Uniswap/uniswap-v2-core"
|
9 | },
|
10 | "keywords": [
|
11 | "uniswap",
|
12 | "ethereum",
|
13 | "v2",
|
14 | "core",
|
15 | "uniswap-v2"
|
16 | ],
|
17 | "files": [
|
18 | "contracts",
|
19 | "build"
|
20 | ],
|
21 | "engines": {
|
22 | "node": ">=10"
|
23 | },
|
24 | "devDependencies": {
|
25 | "@types/chai": "^4.2.6",
|
26 | "@types/mocha": "^5.2.7",
|
27 | "chai": "^4.2.0",
|
28 | "ethereum-waffle": "^2.4.1",
|
29 | "ethereumjs-util": "^6.2.0",
|
30 | "mocha": "^6.2.2",
|
31 | "prettier": "^1.19.1",
|
32 | "rimraf": "^3.0.0",
|
33 | "solc": "0.5.16",
|
34 | "ts-node": "^8.5.4",
|
35 | "typescript": "^3.7.3"
|
36 | },
|
37 | "scripts": {
|
38 | "lint": "yarn prettier ./test/*.ts --check",
|
39 | "lint:fix": "yarn prettier ./test/*.ts --write",
|
40 | "clean": "rimraf ./build/",
|
41 | "precompile": "yarn clean",
|
42 | "compile": "waffle .waffle.json",
|
43 | "pretest": "yarn compile",
|
44 | "test": "mocha",
|
45 | "prepublishOnly": "yarn test"
|
46 | },
|
47 | "license": "GPL-3.0-or-later"
|
48 | }
|