This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
forked from alejandroalffer/hs-ssi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.61 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
{
"name": "hs-ssi-sdk",
"version": "6.1.1",
"description": "sdk is an implementation of proposed DID by W3C",
"main": "build/src/index.js",
"scripts": {
"test": "jest",
"start": "node build/index.js",
"build": "npm run lint:fix && npm run prettier && rimraf build && tsc -p .",
"prettier": "prettier --config .prettierrc.json --write src/**/*.ts",
"prepublish": "npm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"author": "Hypersign Team",
"license": "ISC",
"dependencies": {
"@cosmjs/proto-signing": "^0.27.0",
"@cosmjs/stargate": "^0.27.0",
"@digitalbazaar/ed25519-signature-2020": "^3.0.0",
"@digitalbazaar/ed25519-verification-key-2018": "^3.1.2",
"@digitalbazaar/ed25519-verification-key-2020": "^3.3.0",
"@stablelib/ed25519": "^1.0.2",
"axios": "^0.19.0",
"crypto-ld": "^6.0.0",
"jsonld": "^3.1.1",
"jsonld-signatures": "^5.1.0",
"node-fetch": "^2.6.1",
"protobufjs": "^6.11.2",
"uuid": "^8.3.0",
"vc-js": "https://github.com/hypersign-protocol/vc-js"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"jest": "^28.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"typescript": "^4.5.5"
}
}