UNPKG

1.26 kBJSONView Raw
1{
2 "name": "@venomswap/periphery",
3 "version": "1.0.0",
4 "description": "🎚 Peripheral smart contracts for interacting with the Venomswap exchanges",
5 "engines": {
6 "node": ">=10"
7 },
8 "homepage": "https://venomdao.org",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/VenomProtocol/venomswap-periphery"
12 },
13 "files": [
14 "build",
15 "contracts"
16 ],
17 "dependencies": {
18 "@venomswap/lib": "1.0.0",
19 "@venomswap/core": "1.0.0"
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.12",
32 "ts-node": "^8.5.4",
33 "typescript": "^3.7.3"
34 },
35 "scripts": {
36 "lint": "yarn prettier ./test/*.ts --check",
37 "lint:fix": "yarn prettier ./test/*.ts --write",
38 "clean": "rimraf ./build/",
39 "copy-v1-artifacts": "ncp ./buildV1 ./build",
40 "precompile": "yarn clean",
41 "compile": "waffle .waffle.json",
42 "postcompile": "yarn copy-v1-artifacts",
43 "pretest": "yarn compile",
44 "test": "mocha",
45 "prepublishOnly": "yarn test"
46 },
47 "license": "GPL-3.0-or-later"
48}