-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.23 KB
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
{
"name": "@kaytrust/ev-did-resolver",
"version": "1.1.0",
"description": "Resolve DID documents using the did:ev method, based on Ethereum smart contracts",
"main": "index.js",
"scripts": {
"ts": "tsc -w",
"doc": "typedoc --readme none --out doc src --module commonjs --target ES5 --tsconfig src/tsconfig.json --name 'Resolver-did-ev'",
"postinstall": "rm -rf lib && tsc -p src",
"test": "jest --watchAll -i",
"build": "tsc --build src/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git@github.com:KayTrust/ev-did-resolver"
},
"author": "Jerson Miranda (NTT DATA)",
"license": "ISC",
"devDependencies": {
"@babel/compat-data": "^7.11.0",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.10.2",
"babel-jest": "^26.3.0",
"browserify-fs": "^1.0.0",
"browserify-zlib": "^0.2.0",
"http-browserify": "^1.7.0",
"https-browserify": "^1.0.0",
"jest": "^26.4.2",
"jest-cli": "^26.4.2",
"jsdoc": "^3.6.6",
"ts-jest": "^26.4.1",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"dependencies": {
"did-resolver": "^3.2.0",
"mnid": "^0.1.3",
"web3": "^1.7.3"
}
}