-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
51 lines (51 loc) · 1.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
{
"name": "bull-repl",
"version": "0.29.1",
"description": "Bull / BullMQ queue command line REPL",
"repository": {
"type": "git",
"url": "git://github.com/darky/bull-repl.git"
},
"main": "index.js",
"types": "index.d.ts",
"bin": {
"bull-repl": "./index.js"
},
"files": [
"index.js",
"index.d.ts",
"src/*.js"
],
"dependencies": {
"@moleculer/vorpal": "^1.11.5",
"bull": "^4.12.2",
"chalk": "^4.1.0",
"ms": "^2.1.3",
"node-jq": "^6.0.1",
"redis-url-plus": "^1.1.0"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/node": "^20.11.19",
"@types/vorpal": "^1.12.6",
"ts-node": "^10.9.2",
"type-coverage": "^2.27.1",
"typescript": "^5.3.3"
},
"scripts": {
"build": "npx type-coverage --at-least 100 --ignore-catch; rm index.js; tsc --build tsconfig.json; gsed -i '1 i #!/usr/bin/env node' index.js; chmod +x index.js",
"dev": "TS_NODE_TRANSPILE_ONLY=true TS_NODE_PREFER_TS_EXTS=true node --inspect -r ts-node/register index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"bull",
"bullmq",
"queue",
"repl",
"cli",
"command line"
],
"author": "Vladislav Botvin",
"license": "MIT"
}