-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.21 KB
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
{
"name": "@bitbeat/redis",
"version": "0.0.9",
"description": "The redis module for bitbeat.",
"main": "./index.js",
"typings": "./index.d.ts",
"keywords": [
"bitbeat",
"framework",
"modular",
"backend",
"minimal",
"redis",
"cache"
],
"scripts": {
"start": "npx @bitbeat/core start",
"build": "npx gulp",
"watch": "npx gulp watch",
"analyse:dependencies": "npx bundle-phobia -p package.json",
"analyse:licenses": "yarn licenses list",
"lint": "eslint .",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitbeatjs/redis.git"
},
"author": "Oliver Freudrich <info@oliverfreudrich.com> (https://oliverfreudrich.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitbeatjs/redis/issues"
},
"homepage": "https://github.com/bitbeatjs/redis#readme",
"dependencies": {
"ioredis": "^4.19.0"
},
"peerDependencies": {
"@bitbeat/core": "^0.0.21"
},
"devDependencies": {
"@bitbeat/core": "^0.0.21",
"@types/debug": "^4.1.5",
"@types/ioredis": "^4.17.6",
"@types/node": "^14.14.3",
"@types/node-cron": "^2.0.3",
"@types/pino": "^6.3.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"gulp": "^4.0.2",
"gulp-changed-in-place": "^2.3.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-terser": "^1.4.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"merge-stream": "^2.0.0",
"prettier": "^2.1.2",
"type-fest": "^0.18.0",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint",
"prettier --write"
],
"*.{js,css,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=10"
}
}