UNPKG

1.08 kBJSONView Raw
1{
2 "name": "makiswap-core",
3 "description": "🎛 Core contracts for the Makiswap protocol",
4 "version": "0.0.1",
5 "homepage": "https://makiswap.com",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/makiswap/makiswap-core"
9 },
10 "keywords": [
11 "makiswap",
12 "ethereum",
13 "v2",
14 "core"
15 ],
16 "files": [
17 "contracts",
18 "build"
19 ],
20 "engines": {
21 "node": ">=10"
22 },
23 "devDependencies": {
24 "@types/chai": "^4.2.6",
25 "@types/mocha": "^5.2.7",
26 "chai": "^4.2.0",
27 "ethereum-waffle": "^2.4.1",
28 "ethereumjs-util": "^6.2.0",
29 "mocha": "^6.2.2",
30 "prettier": "^1.19.1",
31 "rimraf": "^3.0.0",
32 "solc": "0.5.16",
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 "precompile": "yarn clean",
41 "compile": "waffle .waffle.json",
42 "pretest": "yarn compile",
43 "test": "mocha",
44 "prepublishOnly": "yarn test"
45 },
46 "license": "GPL-3.0-or-later"
47}