-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
49
50
51
52
53
54
{
"name": "inherichain",
"version": "3.0.1",
"description": "A wallet which has inheritance built in on the Ethereum Blockchain.",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "solhint 'contracts/**/*.sol'",
"prettier": "prettier --write **/*.sol **/*.js",
"documentation": "solidity-docgen --solc-module ./node_modules/solc",
"migrate": "truffle compile && truffle migrate --reset",
"test": "truffle test --network development",
"coverage": "truffle run coverage --file='test/*.test.js' --network coverage",
"start": "node server.js",
"heroku-postbuild": "truffle compile && webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remedcu/Inherichain.git"
},
"keywords": [
"Inherichain",
"Wallet",
"Ethereum",
"Blockchain"
],
"author": "Shebin John",
"license": "ISC",
"bugs": {
"url": "https://github.com/remedcu/Inherichain/issues"
},
"homepage": "https://github.com/remedcu/Inherichain#readme",
"dependencies": {
"@kleros/erc-792": "^8.0.0",
"@openzeppelin/test-helpers": "^0.5.7",
"ganache-cli": "^6.12.0",
"solc": "0.8.23",
"solhint": "^4.0.0",
"solidity-docgen": "^0.5.7",
"truffle": "^5.1.48",
"web3": "^4.0.1",
"webpack": "^5.35.1",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.0.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"solidity-coverage": "^0.8.0"
}
}