forked from lacchain/lacchain-did-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "@lacchain/did",
"version": "1.6.3",
"description": "The LACChain DID Method NodeJS Implementation",
"author": "Sergio Ceron Figueroa <[email protected]>",
"keywords": [
"did",
"lac",
"did-method",
"ssi",
"w3c",
"erc-1060",
"smart-contracts",
"lacchain"
],
"homepage": "http://dev.lacchain.net/en/did-method",
"type": "module",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --experimental-json-modules --timeout 30000 --ui bdd ./test/**",
"coverage": "nyc mocha --experimental-json-modules --experimental-loader=@istanbuljs/esm-loader-hook --timeout 30000 --ui bdd ./test/**",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"dependencies": {
"@lacchain/gas-model-provider": "^1.1.0",
"bs58": "^4.0.1",
"ethereumjs-tx": "^1.3.4",
"ethereumjs-util": "^5.1.5",
"ethers": "^5.0.31",
"js-sha3": "^0.7.0",
"pify": "^5.0.0"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.1.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.3.0",
"nyc": "^15.1.0"
},
"license": "Apache-2.0",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lacchain/lacchain-did-js.git"
},
"bugs": {
"url": "https://github.com/lacchain/did-method/issues"
}
}