-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "ethereumeip712signature2021suite",
"version": "0.0.1",
"description": "EthereumEip712Signature2021 (https://w3c-ccg.github.io/ethereum-eip712-signature-2021-spec)",
"main": "lib/src/index.js",
"scripts": {
"build": "rimraf lib && tsc --build",
"test": "nyc --reporter=text --no-clean mocha --timeout 20000",
"coverage": "nyc report --reporter=lcov --reporter=json-summary --report-dir coverage",
"check-coverage": "update-badge"
},
"keywords": [
"eip712",
"EthereumEip712Signature2021"
],
"author": "Pratap Mridha",
"license": "Apache-2.0",
"dependencies": {
"bip39": "^3.1.0",
"eth-sig-util": "^3.0.1",
"ethers": "^6.3.0",
"jcs": "https://github.com/hypersign-protocol/JCS.git",
"jsonld": "^3.1.1",
"jsonld-signatures": "^9.3.0",
"web3": "^1.9.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"check-code-coverage": "^1.10.4",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}