UNPKG

1.32 kBJSONView Raw
1{
2 "name": "@lockswap/periphery",
3 "version": "3.0.0",
4 "description": "🎚 Peripheral smart contracts for interacting with the Lockswap exchanges",
5 "engines": {
6 "node": "=12.0.0"
7 },
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/lockswaplabs/lockswap-periphery"
11 },
12 "files": [
13 "build",
14 "contracts"
15 ],
16 "dependencies": {
17 "@lockswap/lib": "^2.0.0",
18 "@lockswap/core": "^2.0.1",
19 "@harmony-js/core": "^0.1.57",
20 "@harmony-js/utils": "^0.1.56"
21 },
22 "devDependencies": {
23 "@ethersproject/solidity": "^5.1.0",
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 "ncp": "^2.0.0",
31 "prettier": "^1.19.1",
32 "rimraf": "^3.0.0",
33 "solc": "0.6.12",
34 "ts-node": "^8.5.4",
35 "typescript": "^3.7.3"
36 },
37 "scripts": {
38 "lint": "yarn prettier ./test/*.ts --check",
39 "lint:fix": "yarn prettier ./test/*.ts --write",
40 "clean": "rimraf ./build/",
41 "copy-v1-artifacts": "ncp ./buildV1 ./build",
42 "precompile": "yarn clean",
43 "compile": "waffle .waffle.json",
44 "postcompile": "yarn copy-v1-artifacts",
45 "pretest": "yarn compile",
46 "test": "mocha",
47 "prepublishOnly": ""
48 },
49 "license": "GPL-3.0-or-later"
50}