-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 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
52
53
54
{
"name": "@quirrel/owl",
"version": "0.15.0",
"description": "A high-throughput, TypeScript-native task scheduling library that runs both on Redis and with an in-memory-mock.",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"test": "nyc mocha",
"build": "tsc && node copy-lua.js",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quirrel-dev/owl.git"
},
"keywords": [
"quirrel",
"redis",
"queue",
"typescript"
],
"author": "Simon Knott",
"license": "MIT",
"bugs": {
"url": "https://github.com/quirrel-dev/owl/issues"
},
"homepage": "https://github.com/quirrel-dev/owl#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.22",
"@types/debug": "4.1.7",
"@types/minimatch": "^3.0.5",
"@types/mocha": "9.0.0",
"@types/node": "16.6.1",
"@types/pino": "6.3.11",
"chai": "4.3.4",
"delay": "5.0.0",
"mocha": "9.1.2",
"nyc": "15.1.0",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"ioredis": "^5.2.3",
"ioredis-mock": "^8.2.2",
"minimatch": "^3.0.4",
"opentracing": "^0.14.5",
"pino": "^6.11.3"
}
}