-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.81 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
55
56
57
{
"name": "@ayanworks/polygon-did-registry-contract",
"version": "3.0.0",
"description": "Smart Contract to register DID on Polygon",
"main": "build/index.js",
"directories": {
"test": "test"
},
"scripts": {
"deploy": "node deploy.js",
"test": "node --require ts-node/register --test ./tests/polygon_did_registry_test.test.js",
"clean": "rm -rf build",
"clean:deps": "pnpm clean && rm -rf node_modules",
"build": "pnpm clean && pnpm build:sol && tsc",
"build:sol": "node --require ts-node/register ./compile.ts",
"prettier": "prettier --ignore-path .prettierignore .",
"check-format": "pnpm prettier --list-different",
"check-types": "pnpm build --noEmit",
"format": "pnpm prettier --write",
"release": "release-it"
},
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.17.0",
"dotenv": "^16.0.2",
"eslint": "^8.23.1",
"ethers": "^6.9.0",
"fs-extra": "^11.1.1",
"hardhat": "^2.19.4",
"mocha": "^7.0.0",
"prettier": "^3.0.2",
"release-it": "^16.3.0",
"solc": "0.8.16",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayanworks/polygon-did-registry-contract"
},
"keywords": [
"did-method"
],
"author": "Ajay Jadhav <[email protected]>",
"contributors": [
"Anusha Garg <[email protected]>, Shashank Kulkarni <[email protected]>"
],
"bugs": {
"url": "https://github.com/ayanworks/polygon-did-registry-contract/issues"
},
"homepage": "https://github.com/ayanworks/polygon-did-registry-contract#readme",
"dependencies": {}
}