-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
70 lines (70 loc) · 1.7 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
{
"name": "ssiclient",
"version": "3.3.0",
"description": "SSI Protocol's client for Node.js",
"main": "dist/bin/index.js",
"bin": {
"tyronzil": "./dist/src/bin/index.js"
},
"scripts": {
"build": "tsc && copyfiles \"package.json\" dist",
"lint": "eslint . --ext .ts",
"typedoc": "typedoc --out typedocs",
"tyronzil": "npm run build && npm i -g ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ignite-DAO/ssiclient.git"
},
"keywords": [
"ssi-protocol",
"tyron",
"tyron-ssi",
"self-sovereign-identity",
"ssi",
"decentralized-identity",
"decentralized-identifiers",
"did",
"decentralized-application",
"dapp",
"tyronzil",
"zilliqa",
"ignite-dao"
],
"author": "Tyron Pungtas and its affiliates",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/Ignite-DAO/ssiclient/issues"
},
"homepage": "https://github.com/Ignite-DAO/ssiclient/blob/master/README.md",
"dependencies": {
"@types/websocket": "^1.0.1",
"@zilliqa-js/zilliqa": "2.2.0",
"bn": "^1.0.5",
"chalk": "^4.1.0",
"node-fetch": "^3.1.1",
"readline-sync": "^1.4.10",
"tslib": "^2.1.0",
"tyron": "^3.12.4",
"yargs": "^15.4.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/readline-sync": "^1.4.3",
"@types/yargs": "^15.0.13",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"copyfiles": "^2.4.1",
"eslint": "^7.20.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"typedoc": "^0.17.8",
"typescript": "^3.9.9"
},
"lint-staged": {
"*.ts": [
"eslint src",
"npx tsc --noEmit"
]
}
}