-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 4.27 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
{
"name": "@imqueue/cli",
"version": "1.16.0",
"description": "Command Line Interface for IMQ",
"keywords": [
"command-line-tool",
"cli",
"rpc-client",
"rpc-service",
"rpc",
"rad",
"message-queue",
"redis-queue"
],
"scripts": {
"prepublishOnly": "./node_modules/.bin/tsc",
"postinstall": "([ -z \"$TRAVIS\" ] && (node index config check || node index config init)) || exit 0",
"test": "./node_modules/.bin/tsc && ./node_modules/.bin/nyc mocha && ./node_modules/.bin/nyc report --reporter=text-lcov && npm run test-coverage",
"test-fast": "./node_modules/.bin/tsc && ./node_modules/.bin/nyc mocha ; /usr/bin/env node -e \"import('open').then(open => open.default('file://`pwd`/coverage/index.html', { wait: false }));\"",
"test-local": "export COVERALLS_REPO_TOKEN=$IMQ_CLI_COVERALLS_TOKEN && npm test ; /usr/bin/env node -e \"import('open').then(open => open.default('https://coveralls.io/github/imqueue/imq-rpc', { wait: false }));\"",
"test-coverage": "cat ./coverage/lcov.info | CODECLIMATE_API_HOST=https://codebeat.co/webhooks/code_coverage CODECLIMATE_REPO_TOKEN=bafe0c12-51c6-4419-b671-cf107b5293e3 ./node_modules/.bin/codeclimate-test-reporter",
"clean-typedefs": "find . -name '*.d.ts' -not -wholename '*node_modules*' -not -wholename '*generator*' -type f -delete",
"clean-maps": "find . -name '*.js.map' -not -wholename '*node_modules*' -not -wholename '*generator*' -type f -delete",
"clean-js": "find . -name '*.js' -not -wholename '*node_modules*' -not -wholename '*generator*' -type f -delete",
"clean-tests": "rm -rf .nyc_output coverage",
"clean-doc": "rm -rf docs",
"clean-benchmark": "rm -rf benchmark-result",
"clean": "npm run clean-tests && npm run clean-typedefs && npm run clean-maps && npm run clean-js && npm run clean-doc && npm run clean-benchmark",
"doc": "rm -rf docs && typedoc --excludePrivate --excludeExternals --hideGenerator --exclude \"**/+(debug|test|node_modules|docs|coverage|benchmark|.nyc_output)/**/*\" --mode file --out ./docs . && /usr/bin/env node -e \"import('open').then(open => open.default('file://`pwd`/docs/index.html', { wait: false }));\""
},
"repository": {
"type": "git",
"url": "[email protected]/imqueue/cli.git"
},
"bugs": {
"url": "https://github.com/imqueue/cli/issues"
},
"homepage": "https://imqueue.com/",
"author": "imqueue.com <[email protected]> (https://imqueue.com)",
"license": "ISC",
"dependencies": {
"@imqueue/core": "^1.13.2",
"@imqueue/rpc": "^1.16.0",
"@imqueue/travis": "^1.3.0",
"@octokit/rest": "16.42.2",
"chalk": "^4.1.2",
"command-exists": "^1.2.9",
"dotenv": "^16.3.1",
"inquirer": "^8.2.0",
"inquirer-autocomplete-prompt": "^1.4.0",
"node-rsa": "^1.1.1",
"request": "^2.88.2",
"semver": "^7.5.4",
"word-wrap": "^1.2.5",
"yargs": "^17.2.1"
},
"preferGlobal": true,
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/inquirer": "^8.2.6",
"@types/mocha": "^10.0.4",
"@types/mock-require": "^2.0.3",
"@types/node": "^20.9.0",
"@types/node-rsa": "^1.1.4",
"@types/request": "^2.48.12",
"@types/semver": "^7.5.5",
"@types/sinon": "^17.0.1",
"@types/yargs": "^17.0.31",
"chai": "^4.3.10",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.1",
"minimist": "^1.2.5",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"open": "^9.1.0",
"reflect-metadata": "^0.1.13",
"sinon": "^17.0.1",
"source-map-support": "^0.5.20",
"ts-node": "^10.4.0",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"main": "index.js",
"bin": {
"imq": "index.js",
"imqctl": "bin/ctl.sh",
"imqlog": "bin/log.sh",
"imqup": "bin/updep.sh"
},
"typescript": {
"definitions": "index.d.ts"
},
"mocha": {
"require": [
"ts-node/register",
"source-map-support/register"
],
"recursive": true,
"bail": true,
"full-trace": true
},
"nyc": {
"check-coverage": false,
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text",
"text-summary",
"lcovonly"
]
}
}