forked from humanprotocol/hmt-escrow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 KB
/
package.json
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
41
42
43
44
45
46
47
48
{
"name": "hmt-escrow",
"version": "0.14.6",
"description": "Launch escrow contracts to the HUMAN network",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile; truffle migrate",
"fix:js": "eslint --fix test/** migrations/**",
"lint:js": "eslint test/** migrations/**",
"lint": "npm run lint:js",
"publish": "truffle publish",
"test": "npx truffle test",
"coverage": "./node_modules/.bin/solidity-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hCaptcha/hmt-escrow.git"
},
"keywords": [
"ethereum"
],
"authors": [
"HUMAN Protocol"
],
"license": "MIT",
"homepage": "https://github.com/hCaptcha/hmt-escrow#readme",
"dependencies": {
"@openzeppelin/contracts": "3.1.0",
"ethereumjs-wallet": "^1.0.0",
"truffle": "^5.5.30",
"truffle-hdwallet-provider": "1.0.17",
"web3-provider-engine": "https://github.com/MetaMask/web3-provider-engine.git"
},
"devDependencies": {
"dotenv": "^6.0.0",
"eslint": "8.26.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-mocha": "4.11.0",
"eslint-plugin-node": "5.1.0",
"eslint-plugin-react": "7.5.1",
"solidity-coverage": "^0.8.2"
}
}