-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@blocknet/eth-contracts",
"description": "Blocknet solidity contracts for atomic swaps on Ethereum",
"version": "1.0.0",
"homepage": "https://blocknet.co/",
"author": "rikublock",
"repository": {
"type": "git",
"url": "https://github.com/rikublock/blocknet-contracts"
},
"license": "MIT",
"files": [
"contracts",
"build"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^1.1.0",
"dotenv": "^10.0.0",
"ganache-cli": "^6.11.0",
"mocha": "^9.1.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.0",
"truffle": "^5.1.47",
"truffle-flattener": "^1.5.0"
},
"scripts": {
"lint": "yarn prettier ./test/*.ts --check",
"lint:fix": "yarn prettier ./test/*.ts --write",
"clean": "rimraf ./build/",
"precompile": "yarn clean",
"compile": "yarn truffle compile",
"pretest": "yarn compile",
"test": "mocha",
"deploy": "yarn truffle migrate --network development",
"deploy:ropsten": "yarn truffle migrate --network ropsten"
}
}