-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.8 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
{
"name": "symbol-network",
"version": "0.0.2",
"description": "CLI tools to create node clusters for new or existing Symbol networks.",
"bin": {
"symbol-network": "bin/run"
},
"homepage": "https://github.com/fboucquez/symbol-network",
"bugs": "https://github.com/fboucquez/symbol-network/issues",
"scripts": {
"doc": "shx mkdir -p ts-docs && typedoc --out \"ts-docs\" src && touch ./ts-docs/.nojekyll",
"clean": "npx shx rm -rf ./lib",
"purge": "npx shx rm -rf lib coverage node_modules target .nyc_output logs.log ts-docs",
"lint": "eslint --cache src/ test/ --ext .ts",
"lint:fix": "eslint src/ test/ --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": "npx shx rm -f oclif.manifest.json",
"posttest": "eslint src/ test/ --ext .ts",
"oclif-doc": "oclif-dev manifest && oclif-dev readme --multi",
"watch": "tsc --watch",
"compile": "tsc ",
"build": "npx shx rm -rf lib && npm run compile",
"prepack": "npx shx rm -rf lib && npm run compile && 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"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./lib/commands",
"bin": "symbol-network",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help"
]
},
"keywords": [],
"author": "Fernando Boucquez <[email protected]>",
"license": "Apache-2.0",
"mocha": {
"timeout": 40000
},
"types": "lib/index.d.ts",
"dependencies": {
"@oclif/command": "^1.8.16",
"@oclif/config": "^1.18.3",
"@oclif/plugin-autocomplete": "^1.2.0",
"@oclif/plugin-help": "^5.1.11",
"cross-fetch": "^3.1.5",
"figlet": "^1.5.2",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"remove": "^0.1.5",
"rxjs": "^7.5.2",
"symbol-bootstrap": "^1.1.4",
"symbol-sdk": "^1.0.4-alpha-202112211435",
"tslib": "^2.3.1",
"winston": "^3.5.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^2.0.3",
"@types/chai": "^4.3.0",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^8.2.0",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@types/semver": "^7.3.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",
"mocha": "^9.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-stdin": "^1.0.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"shx": "^0.3.4",
"sinon": "^13.0.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}