forked from ayanworks/polygon-did-registrar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.35 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
58
59
60
61
62
63
64
{
"name": "@ayanworks/polygon-did-registrar",
"version": "0.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prestart": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start:register": "npm run prestart && node ./dist/polygon-did-registrar.js",
"start:update": "npm run prestart && node ./dist/polygon-did-update.js",
"start:delete": "npm run prestart && node ./dist/polygon-did-delete.js",
"test": "jest",
"lint": "tslint -p tsconfig.json"
},
"author": "Shashank Kulkarni <[email protected]>",
"license": "MIT",
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"buffer": "^6.0.3",
"did-jwt": "^5.1.0",
"did-resolver": "^3.1.0",
"dotenv": "^8.0.0",
"eth-did-resolver": "^0.1.1",
"ethjs": "^0.4.0",
"ethjs-contract": "^0.2.3",
"ethjs-provider-http": "^0.1.6",
"ethjs-query": "^0.3.8",
"ethr-did-resolver": "^3.0.3",
"ganache-cli": "^6.12.2",
"log4js": "^6.3.0",
"prettier": "^2.2.1",
"truffle-contract": "^4.0.31",
"typescript": "^4.2.4",
"web3": "1.3.0",
"@ayanworks/polygon-did-registry-contract": "0.0.1"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.23",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"ethers": "^5.1.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5"
},
"description": "The polygon DID method library uses Ethereum based addresses as fully functional DID’s or Decentralized identifiers, on the Polygon network. The following allows one to create a key Pair based and facilitates its storage on the registry smart contract, deployed on Polygon chain. Third party users can use this to create polygon DID identities. It allows the controller to perform actions like resolve, update and delete by encapsulating polygonDID registry and PolygonDID resolver. The DID identifier allows the controller to resolve DID document for usage in different scenarios.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/polygon-did/polygon-did-registrar.git"
},
"keywords": [
"did-method"
],
"bugs": {
"url": "https://gitlab.com/polygon-did/polygon-did-registrar/issues"
},
"homepage": "https://gitlab.com/polygon-did/polygon-did-registrar#readme"
}