This repository has been archived by the owner on Jun 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
98 lines (98 loc) · 3.19 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
{
"name": "symbol-cli",
"version": "1.0.2",
"description": "Command Line Interface (CLI) to interact with Symbol",
"main": "index.js",
"scripts": {
"prepack": "npm run build",
"pretest": "npm run build",
"test": "mocha --ui bdd --recursive ./build/test",
"build": "rm -rf build/ && tsc",
"watch": "tsc -w",
"build:win": "del build && tsc",
"dev": "nodemon --config \"./nodemon-config.json\"/",
"test:cov": "nyc --reporter=lcov --reporter=text-summary npm t",
"test:coveralls": "npm run test:cov | coveralls",
"coveralls-report": "cat ./coverage/lcov.info | coveralls",
"prettier": "prettier --write ./src ./test",
"lint": "eslint --cache src/ test/ --ext .ts",
"lint:fix": "eslint src/ test/ --ext .ts --fix",
"style:fix": "npm run prettier && npm run lint:fix",
"version": "echo $npm_package_version"
},
"pre-commit": [
"lint"
],
"bin": {
"symbol-cli": "bin/symbol-cli"
},
"bugs": "https://github.com/nemtech/symbol-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/nemtech/symbol-cli.git"
},
"license": "Apache-2.0",
"dependencies": {
"@ledgerhq/hw-transport-node-hid": "^5.51.1",
"axios": "^0.21.4",
"bip32": "^1.0.2",
"chalk": "^2.3.0",
"cli-table3": "^0.5.1",
"clime": "^0.5.9",
"ora": "^3.4.0",
"path": "^0.12.7",
"prompts": "^2.4.2",
"rxjs": "^6.6.7",
"symbol-hd-wallets": "0.14.2",
"symbol-ledger-typescript": "0.0.1-alpha-202106081510",
"symbol-sdk": "^1.0.3",
"symbol-uri-scheme": "0.6.1",
"update-notifier": "^4.1.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/bip32": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/ledgerhq__hw-transport": "^4.21.3",
"@types/ledgerhq__hw-transport-node-hid": "^4.22.2",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.5",
"@types/ora": "^3.2.0",
"@types/prompts": "^2.0.14",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.6",
"@types/update-notifier": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"eslint-plugin-prettier": "^3.3.1",
"import-sort-style-module": "^6.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"nyc": "^15.0.0",
"prettier": "^2.5.1",
"prettier-plugin-import-sort": "0.0.4",
"prettier-plugin-organize-imports": "^1.1.1",
"proxyquire": "^2.1.3",
"sinon": "^12.0.1",
"ts-mockito": "^2.2.8",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
},
"importSort": {
".ts": {
"style": "module",
"parser": "typescript"
}
}
}