-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.81 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "jsonld-signatures-merkleproof2019",
"version": "0.0.0-dev",
"description": "A jsonld signature implementation to support MerkleProof2019 verification in Verifiable Credential context",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"typings": "lib/index.d.ts",
"dependencies": {
"@blockcerts/explorer-lookup": "^1.5.2",
"@blockcerts/schemas": "^3.6.4",
"@digitalbazaar/ecdsa-multikey": "github:blockchain-certificates/ecdsa-multikey#feat/secp256k1",
"@trust/keyto": "^1.0.1",
"@vaultie/lds-merkle-proof-2019": "^0.0.12",
"bitcoinjs-lib": "^6.0.2",
"bs58": "^4.0.1",
"elliptic": "^6.5.7",
"hash-base": "github:blockchain-certificates/hash-base",
"js-sha3": "^0.8.0",
"jsonld": "^8.3.2",
"jsonld-signatures": "^11.2.1",
"lodash.clonedeep": "^4.5.0",
"secp256k1": "^5.0.0",
"sha256": "^0.2.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@decentralized-identity/did-common-typescript": "^0.1.19",
"@digitalbazaar/vc": "^6.2.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^20.9.0",
"@types/sinon": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"dts-bundle-generator": "^8.1.2",
"eslint": "^8.53.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.3",
"node-eval": "^2.0.0",
"node-fetch": "^3.2.10",
"rimraf": "^5.0.5",
"rollup": "^4.22.4",
"semantic-release": "^22.0.7",
"sinon": "^17.0.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitest": "^2.1.1"
},
"scripts": {
"compile": "npm run clean:build && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && npm run dts:bundle",
"dts:bundle": "dts-bundle-generator -o ./lib/index.d.ts --project tsconfig.json --no-banner src/index.ts",
"clean:build": "rimraf lib",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockchain-certificates/jsonld-signatures-merkle-proof-2019.git"
},
"keywords": [
"verifiable",
"credentials",
"blockcerts",
"merkle",
"tree",
"jsonld",
"signatures"
],
"author": "Blockcerts",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockchain-certificates/jsonld-signatures-merkle-proof-2019/issues"
},
"homepage": "https://github.com/blockchain-certificates/jsonld-signatures-merkle-proof-2019#readme"
}