-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "@quirrel/owl",
"version": "0.11.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.16",
"@types/debug": "^4.1.5",
"@types/ioredis": "^4.26.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.3.0",
"chai": "^4.3.4",
"delay": "^5.0.0",
"glob": "^7.1.6",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"debug": "^4.3.1",
"ioredis": "^4.27.1",
"ioredis-mock": "^5.5.6"
}
}