-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 999 Bytes
/
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
{
"name": "selfkey-did-ledger",
"version": "1.0.0",
"description": "Smart contracts that implement SelfKey DID Ledger",
"author": "Carlos Bruguera <[email protected]>",
"keywords": [
"identity",
"DID",
"claims",
"decentralized"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SelfKeyFoundation/selfkey-did-ledger.git"
},
"homepage": "https://github.com/SelfKeyFoundation/selfkey-did-ledger#readme",
"bugs": {
"url": "https://github.com/SelfKeyFoundation/selfkey-did-ledger/issues"
},
"main": "truffle-config.js",
"scripts": {
"test": "truffle test",
"test:cov": "solidity-coverage",
"lint:sol": "solhint contracts/**/*.sol"
},
"devDependencies": {
"dotenv": "^8.0.0",
"solhint": "^1.5.1",
"solidity-coverage": "^0.6.0-beta.3",
"truffle-hdwallet-provider": "1.0.6",
"web3": "1.0.0-beta.37"
},
"dependencies": {
"ethereumjs-util": "^6.1.0",
"openzeppelin-solidity": "^2.2.0"
}
}