UNPKG

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