UNPKG

1.31 kBJSONView Raw
1{
2 "name": "@treeswap/tree-swap-periphery",
3 "version": "1.0.0",
4 "description": "🎚 Peripheral smart contracts for interacting with Treeswap V2",
5 "engines": {
6 "node": ">=10"
7 },
8 "homepage": "https://treeswap.org",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/treeswap/tree-swap-periphery"
12 },
13 "files": [
14 "build",
15 "contracts"
16 ],
17 "dependencies": {
18 "@treeswap-libs/tree-swap-core": "1.0.2",
19 "@treeswap/tree-swap-lib": "1.0.2",
20 "truffle-flattener": "^1.5.0"
21 },
22 "devDependencies": {
23 "@types/chai": "^4.2.6",
24 "@types/mocha": "^5.2.7",
25 "chai": "^4.2.0",
26 "ethereum-waffle": "^2.4.1",
27 "ethereumjs-util": "^6.2.0",
28 "mocha": "^6.2.2",
29 "ncp": "^2.0.0",
30 "prettier": "^1.19.1",
31 "rimraf": "^3.0.0",
32 "solc": "0.6.6",
33 "ts-node": "^8.5.4",
34 "typescript": "^3.7.3"
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",
43 "postcompile": "yarn copy-v1-artifacts",
44 "pretest": "yarn compile",
45 "test": "mocha",
46 "prepublishOnly": "yarn test"
47 },
48 "license": "GPL-3.0-or-later"
49}