UNPKG

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