forked from ayanworks/polygon-did-registry-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "fvm-did-registry-contract",
"version": "2.0.0",
"description": "Smart Contract to register DID on FVM",
"main": "build/contracts/FVMDidRegistry.json",
"directories": {
"test": "test"
},
"scripts": {
"compile": "node compile.js",
"deploy": "node deploy.js",
"test": "node compile.js && mocha --timeout 30000"
},
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.7.0",
"@truffle/hdwallet-provider": "^2.1.2",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"fs-extra": "8.1.0",
"ganache-cli": "6.12.2",
"mocha": "^7.0.0",
"solc": "0.8.17",
"truffle": "^5.6.8"
},
"devDependencies": {
"chai": "^4.3.6",
"ethers": "^5.6.9",
"truffle": "^5.5.20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amany9000/FVM-did-registry-contract"
},
"keywords": [
"did-method"
],
"author": "Aman Yadav <[email protected]>",
"bugs": {
"url": "https://github.com/amany9000/FVM-did-registry-contract/issues"
},
"homepage": "https://github.com/amany9000/FVM-did-registry-contract#readme"
}