-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
115 lines (115 loc) · 3.71 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "yourdlt",
"description": "Tool that lets you connect to existing YourDLT and/or Symbol distributed ledger networks",
"version": "1.4.1",
"author": "Using Blockchain Ltd (https://ubc.digital)",
"contributors": [
{
"name": "Grégory Saive",
"email": "greg@ubc.digital"
},
{
"name": "Fernando Boucquez",
"email": "fboucquez@gmail.com"
}
],
"bin": {
"yourdlt": "./bin/run"
},
"bugs": "https://github.com/usingblockchain/yourdlt/issues",
"dependencies": {
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3.1.0",
"figlet": "^1.2.4",
"handlebars": "^4.7.7",
"inquirer": "^7.3.3",
"js-yaml": "^3.14.0",
"lodash": "^4.17.21",
"memorystream": "^0.3.1",
"noble-ed25519": "^1.0.3",
"node-forge": "^0.10.0",
"rxjs": "^6.6.3",
"semver": "^7.3.5",
"shx": "^0.3.2",
"sshpk": "^1.16.1",
"symbol-sdk": "^1.0.1",
"tslib": "^1.13.0",
"utf8": "^2.1.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@types/figlet": "^1.2.0",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^7.3.1",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.165",
"@types/memorystream": "^0.3.0",
"@types/node": "^10.17.28",
"@types/node-forge": "^0.9.4",
"@types/semver": "^7.3.6",
"@types/sshpk": "^1.10.5",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"create-ts-index": "^1.13.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"globby": "^10.0.2",
"marked": ">=2.0.0",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^1.1.1",
"ts-node": "^8.10.2",
"typedoc": "^0.20.34",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/config",
"/presets",
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/usingblockchain/yourdlt",
"keywords": [
"blockchain",
"network",
"node",
"composer"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "yourdlt",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
]
},
"repository": "usingblockchain/yourdlt",
"scripts": {
"doc": "typedoc --out \"ts-docs\" src && touch ./ts-docs/.nojekyll",
"lint": "eslint --cache src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"prettier": "prettier --write ./src",
"style:fix": "npm run create-index-files && npm run prettier && npm run lint:fix && npm run oclif-doc",
"create-index-files": "cti create ./src -b -n -e commands",
"postpack": "shx rm -f oclif.manifest.json",
"oclif-doc": "oclif-dev manifest && oclif-dev readme --multi",
"prepack": "shx rm -rf lib && tsc -b && npm run oclif-doc",
"version": "echo $npm_package_version",
"install-cli": "npm pack && npm i -g",
"clean-network": "yourdlt clean -t target/bootstrap-test",
"start-network": "yourdlt start -t target/bootstrap-test -u 'current'",
"build": "shx rm -rf lib && tsc -b"
},
"types": "lib/index.d.ts"
}