forked from ayanworks/polygon-did-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "@ayanworks/polygon-did-resolver",
"version": "0.0.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prestart": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node ./dist/polygon-did-resolver.js",
"test": "jest",
"lint": "tslint -p tsconfig.json"
},
"author": "Shashank Kulkarni <shashank.kulkarni@ayanworks.com>",
"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/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 resolver library is used for resolving DID’s in Polygon Method Space. The module is supposed to be used as an integeration to polygon library.",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/polygon-did/polygon-did-resolver.git"
},
"keywords": [
"did-method"
],
"bugs": {
"url": "https://gitlab.com/polygon-did/polygon-did-resolver/issues"
},
"homepage": "https://gitlab.com/polygon-did/polygon-did-resolver#readme"
}