forked from darky/bull-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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.18.0",
"description": "Bull 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": {
"bull": "3.11.0",
"chalk": "2.4.2",
"ms": "2.1.2",
"searchjs": "1.0.2",
"terminal-link": "2.0.0",
"vorpal": "1.12.0"
},
"devDependencies": {
"@types/bull": "3.10.3",
"@types/ms": "0.7.31",
"@types/node": "12.7.12",
"@types/vorpal": "1.12.0",
"ts-node": "8.4.1",
"type-coverage": "2.3.0",
"typescript": "3.6.4"
},
"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",
"prepublish": "npm run build"
},
"keywords": [
"bull",
"queue",
"repl",
"cli",
"command line"
],
"author": "Vladislav Botvin",
"license": "MIT"
}