-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
113 lines (113 loc) · 4.11 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
{
"name": "@theqrl/cli",
"description": "QRL CLI functions",
"version": "1.10.2",
"author": "JP Lomas <jp@theqrl.org>, The QRL Foundation",
"bin": {
"qrl-cli": "./bin/run"
},
"bugs": "https://github.com/theqrl/qrl-cli/issues",
"dependencies": {
"@grpc/grpc-js": "^1.6.7",
"@grpc/proto-loader": "^0.5.1",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@semantic-release/git": "^10.0.1",
"@theqrl/explorer-helpers": "^2.7.0",
"@theqrl/qrl-proto-sha256": "^3.4.1",
"@theqrl/qrlbase.proto": "^1.1.0",
"@theqrl/validate-qrl-address": "^1.1.0",
"acorn": "^7.2.0",
"aes-js": "^3.1.2",
"aes256": "^1.0.4",
"axios": "^0.21.1",
"bech32": "^1.1.3",
"bignumber.js": "^9.0.0",
"cli-ux": "^5.3.1",
"crypto": "^1.0.1",
"crypto-js": "3.1.9-1",
"eccrypto": "^1.1.5",
"google-proto-files": "^2.3.0",
"grpc-js-kit": "^0.1.0",
"kleur": "^3.0.3",
"moment": "^2.24.0",
"ora": "^3.4.0",
"qrcode-terminal": "^0.12.0",
"qrllib": "^1.1.7",
"tmp": "^0.1.0",
"util": "^0.12.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"babel-eslint": "^10.1.0",
"chai": "^4",
"codecov": "^3.6.5",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"globby": "^10",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"pkg": "^4.4.9"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/theqrl/qrl-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"macos": {
"identifier": "com.theqrl.qrl-cli"
},
"commands": "./src/commands",
"bin": "qrl-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "theqrl/qrl-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --require test/hooks.js --forbid-only -t 50000 \"test/**/*.test.js\"",
"test-balance": "nyc mocha --forbid-only -t 50000 \"test/commands/balance.test.js\"",
"test-create-wallet": "nyc mocha --forbid-only -t 50000 \"test/commands/create-wallet.test.js\"",
"test-generate-lattice-keys": "nyc mocha --require test/hooks.js --forbid-only -t 50000 \"test/commands/generate-lattice-keys.test.js\"",
"test-generate-shared-keys": "nyc mocha --require test/hooks.js --forbid-only -t 50000 \"test/commands/generate-shared-keys.test.js\"",
"test-get-keys": "nyc mocha --forbid-only -t 50000 \"test/commands/get-keys.test.js\"",
"test-notarize": "nyc mocha --require test/hooks.js --forbid-only -t 50000 \"test/commands/notarize.test.js\"",
"test-ots": "nyc mocha --forbid-only -t 50000 \"test/commands/ots.test.js\"",
"test-receive": "nyc mocha --forbid-only -t 50000 \"test/commands/receive.test.js\"",
"test-search": "nyc mocha --require test/hooks.js --forbid-only -t 50000 \"test/commands/search.test.js\"",
"test-send-message": "nyc mocha --forbid-only -t 50000 \"test/commands/send-message.test.js\"",
"test-send": "nyc mocha --require test/hooks.js --forbid-only -t 50000 \"test/commands/send.test.js\"",
"test-status": "nyc mocha --forbid-only -t 50000 \"test/commands/status.test.js\"",
"test-validate": "nyc mocha --forbid-only -t 50000 \"test/commands/validate.test.js\"",
"version": "oclif-dev readme && git add README.md",
"cov": "nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov -t $CODECOV_TOKEN",
"make-binaries": "pkg . -t node12-macos-x64 -o dist/macos/qrl-cli && pkg . -t node12-win-x64 -o dist/win/qrl-cli && pkg . -t node12-linux-x64 -o dist/linux/qrl-cli && cp ./assets/macos/ecdh.node dist/macos && cp ./assets/linux/ecdh.node dist/linux && cp ./assets/win/ecdh.node dist/win"
},
"pkg": {
"scripts": [
"src/**"
],
"assets": [
"node_modules/@theqrl/qrlbase.proto/**"
]
}
}