-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
93 lines (93 loc) · 2.98 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
{
"name": "orkid",
"version": "0.11.0",
"description": "Reliable and modern Redis-Streams based task queue for Node.js",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"test": "npm run ts:js && NODE_ENV=test jest --colors --coverage --runInBand --forceExit --detectOpenHandles --testSequencer ./jest.customsequencer.js",
"test:badges": "npm run test && jest-coverage-badges output './badges'",
"upload_coverage": "codecov",
"lint": "eslint '**/*.{js,ts}'",
"prettier": "prettier --write '**/*.{ts,js}'",
"release:check": "npm test && npm run lint",
"release": "npm run release:check && release-it",
"release:dry": "npm run release:check && release-it --dry-run",
"copy:nonts": "copy-and-watch 'src/**/!(*.ts|*.d.ts)' lib",
"prepack": "npm run ts:js",
"ts": "tsc --noEmit",
"ts:node": "ts-node-dev",
"ts:coverage": "type-coverage --strict && echo '\n\n\n' && echo \"TS Files:$(find src -type f -name '*.ts' | wc -l | sed 's/ //g'), JS Files:$(find src -type f -name '*.js' | wc -l | sed 's/ //g')\"",
"ts:js": "tsc && npm run copy:nonts",
"ts:install-types": "typesync",
"ts:diagnostics": "tsc --noEmit --diagnostics --listFiles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mugli/orkid.git"
},
"homepage": "https://github.com/mugli/orkid#readme",
"author": "Mehdi Hasan Khan <[email protected]> (https://about.me/mehdi.hasan.khan)",
"bugs": {
"url": "https://github.com/mugli/orkid-node/issues"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@hapi/joi": "^16.1.7",
"ioredis": "^4.14.1",
"lodash": "^4.17.15",
"redis-errors": "^1.2.0",
"shortid": "^2.2.15"
},
"devDependencies": {
"@jest/test-sequencer": "^24.9.0",
"@types/eslint": "^6.1.2",
"@types/eslint-plugin-prettier": "^2.2.0",
"@types/hapi__joi": "^16.0.1",
"@types/ioredis": "^4.0.18",
"@types/lodash": "^4.14.144",
"@types/prettier": "^1.18.3",
"@types/redis-errors": "^1.2.0",
"@types/shortid": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"auto-changelog": "^1.16.1",
"codecov": "^3.6.1",
"copy-and-watch": "^0.1.4",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"jest-coverage-badges": "^1.1.2",
"prettier": "^1.18.2",
"release-it": "^12.4.3",
"ts-node-dev": "^1.0.0-pre.41",
"type-coverage": "^2.3.0",
"typescript": "^3.6.4",
"typesync": "^0.6.1"
},
"keywords": [
"task-queues",
"job-queues",
"task-schedulers",
"job-schedulers",
"redis-queues",
"queues",
"workers",
"producers",
"consumers",
"worker-queues",
"redis-streams",
"redis",
"jobs",
"tasks",
"messages",
"message-queues",
"orkid"
]
}