-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 4.48 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
116
117
118
119
120
121
122
123
124
{
"name": "symbol-bootstrap",
"description": "Symbol tool that allows you creating, configuring and running Symbol's networks",
"version": "1.1.11",
"author": "Fernando Boucquez <fboucquez@gmail.com>",
"bin": {
"symbol-bootstrap": "bin/run"
},
"bugs": "https://github.com/fboucquez/symbol-bootstrap/issues",
"dependencies": {
"@noble/ed25519": "^1.5.3",
"@oclif/command": "^1.8.16",
"@oclif/config": "^1.18.3",
"@oclif/plugin-autocomplete": "^1.2.0",
"@oclif/plugin-help": "^5.1.11",
"archiver": "^5.3.0",
"cross-fetch": "^3.1.5",
"figlet": "^1.5.2",
"handlebars": "^4.7.7",
"inquirer": "^8.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"memorystream": "^0.3.1",
"node-stream-zip": "^1.15.0",
"rxjs": "^7.5.2",
"semver": "^7.3.5",
"shx": "^0.3.4",
"symbol-sdk": "^2.0.5",
"symbol-statistics-service-typescript-fetch-client": "^1.1.5",
"tslib": "^2.3.1",
"utf8": "^3.0.0",
"winston": "^3.5.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^1.2.8",
"@types/archiver": "^5.3.1",
"@types/chai": "^4.3.0",
"@types/figlet": "^1.5.4",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^8.2.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.178",
"@types/memorystream": "^0.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@types/semver": "^7.3.9",
"@types/sinon": "^10.0.9",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"create-ts-index": "^1.14.0",
"dir-compare": "^4.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^10.0.2",
"marked": ">=4.0.12",
"mocha": "^9.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-stdin": "^1.0.0",
"nock": "^13.2.2",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"sinon": "^13.0.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/config",
"/presets",
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/fboucquez/symbol-bootstrap",
"keywords": [
"oclif"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "symbol-bootstrap",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
]
},
"repository": "fboucquez/symbol-bootstrap",
"scripts": {
"doc": "typedoc --out \"ts-docs\" src && touch ./ts-docs/.nojekyll",
"lint": "eslint --cache src/ test/ --ext .ts",
"clean": "npx shx rm -rf ./lib",
"lint:fix": "eslint src/ test/ --ext .ts --fix",
"prettier": "prettier --write ./src ./test",
"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": "npx shx rm -f oclif.manifest.json",
"posttest": "eslint src/ test/ --ext .ts",
"oclif-doc": "oclif-dev manifest && oclif-dev readme --multi",
"oclif-debug": "env DEBUG=* oclif-dev manifest",
"watch": "tsc -b -w",
"compile": "tsc -b",
"build": "npm run clean && npm run compile",
"prepack": "npm run build && npm run oclif-doc",
"test": "nyc --reporter=lcov --extension .ts mocha -r ts-node/register --timeout 900000 --forbid-only \"test/**/*.test.ts\"",
"e2e": "nyc --reporter=lcov --extension .ts mocha -r ts-node/register --timeout 900000 --forbid-only \"test/**/*.e2e.ts\"",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"version": "echo $npm_package_version",
"install-cli": "npm pack && npm i -g",
"clean-network": "symbol-bootstrap clean -t target/bootstrap-test",
"start-network": "symbol-bootstrap start -t target/bootstrap-test -u 'current'"
},
"types": "lib/index.d.ts"
}