UNPKG

1.3 kBJSONView Raw
1{
2 "name": "@daofi/uniswap-v2-periphery",
3 "version": "1.3.3-linear",
4 "description": "🎚 Peripheral smart contracts for interacting with Uniswap V2",
5 "engines": {
6 "node": ">=10"
7 },
8 "homepage": "https://uniswap.org",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/DAOfi/uniswap-v2-periphery"
12 },
13 "files": [
14 "build",
15 "contracts"
16 ],
17 "dependencies": {
18 "@uniswap/lib": "1.1.1",
19 "@daofi/uniswap-v2-core": "1.3.3"
20 },
21 "devDependencies": {
22 "@types/chai": "^4.2.6",
23 "@types/mocha": "^5.2.7",
24 "chai": "^4.2.0",
25 "ethereum-waffle": "^2.4.1",
26 "ethereumjs-util": "^6.2.0",
27 "mocha": "^6.2.2",
28 "ncp": "^2.0.0",
29 "prettier": "^1.19.1",
30 "rimraf": "^3.0.0",
31 "solc": "0.6.6",
32 "ts-node": "^8.5.4",
33 "typescript": "^3.7.3",
34 "web3": "^1.3.0"
35 },
36 "scripts": {
37 "lint": "yarn prettier ./test/*.ts --check",
38 "lint:fix": "yarn prettier ./test/*.ts --write",
39 "clean": "rimraf ./build/",
40 "copy-v1-artifacts": "ncp ./buildV1 ./build",
41 "precompile": "yarn clean",
42 "compile": "waffle .waffle.json && node hashContract.js",
43 "postcompile": "yarn copy-v1-artifacts",
44 "pretest": "yarn compile",
45 "test": "mocha",
46 "prepublishOnly": "yarn compile"
47 },
48 "license": "GPL-3.0-or-later"
49}