UNPKG

1.82 kBJSONView Raw
1{
2 "name": "@valueswap/v2-core",
3 "version": "2.0.1",
4 "description": "🎛 Core contracts for the ValueswapV2 protocol",
5 "author": {
6 "name": "Value Network",
7 "email": "support@valuenetwork.live",
8 "url": "https://valuenetwork.live"
9 },
10 "license": "GPL-3.0-or-later",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/valuenetworklive2021/valueswap-v2-core"
14 },
15 "scripts": {
16 "lint": "yarn prettier ./test/*.ts --check",
17 "lint:fix": "yarn prettier ./test/*.ts --write",
18 "get-hash": "truffle exec scripts/get-init-code-hash.js",
19 "clean": "rimraf ./build/",
20 "precompile": "yarn clean",
21 "compile": "truffle compile",
22 "postcompile": "yarn get-hash",
23 "pretest": "yarn compile",
24 "test": "truffle test",
25 "predeploy-": "yarn compile",
26 "deploy": "truffle migrations --network",
27 "verify": "truffle run verify --network",
28 "prepublishOnly-": "yarn test",
29 "ganache-cli": "ganache-cli",
30 "concat": "yarn run concat:all",
31 "concat:all": "yarn run concat:ValueswapV2Factory",
32 "concat:ValueswapV2Factory": "truffle-flattener contracts/ValueswapV2Factory.sol > contracts-monofiles/ValueswapV2Factory.sol"
33 },
34 "files": [
35 "contracts",
36 "build"
37 ],
38 "engines": {
39 "node": ">=10"
40 },
41 "devDependencies": {
42 "@truffle/hdwallet-provider": "^1.2.1",
43 "chai": "^4.2.0",
44 "ethereum-waffle": "^3.2.1",
45 "ethereumjs-util": "^6.2.0",
46 "ethers": "^5.0.0",
47 "ganache-cli": "^6.12.1",
48 "prettier": "^1.19.1",
49 "rimraf": "^3.0.0",
50 "solc": "0.5.16",
51 "truffle": "^5.1.59",
52 "truffle-flattener": "^1.5.0",
53 "truffle-plugin-verify": "^0.5.4",
54 "ts-node": "^8.5.4",
55 "typescript": "^3.7.3"
56 },
57 "keywords": [
58 "ethereum",
59 "valueswap",
60 "v2",
61 "core",
62 "valueswap v2"
63 ]
64}