-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.82 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.82 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
83
84
{
"name": "@bemit/redis",
"version": "0.1.0-alpha.2",
"description": "NodeJS redis connection helper, with caching and rating tools.",
"homepage": "https://bemit.codes",
"author": {
"name": "bemit",
"url": "https://bemit.codes"
},
"contributors": [
{
"name": "Michael Becker",
"url": "https://i-am-digital.eu"
}
],
"license": "MIT",
"keywords": [
"redis"
],
"type": "module",
"exports": {
".": "./index.js",
"./ErrorDuplicateConnection": "./ErrorDuplicateConnection.js",
"./ErrorUnknownConnection": "./ErrorUnknownConnection.js",
"./RedisCached": "./RedisCached.js",
"./RedisConnection": "./RedisConnection.js",
"./RedisManager": "./RedisManager.js",
"./RedisRate": "./RedisRate.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bemit/nodejs-redis.git"
},
"scripts": {
"prebuild": "npm run clean-dist && npm run test",
"build": "cross-env NODE_ENV=production CI=true npm run build-babel",
"postbuild": "npm run dtsgen",
"build-babel": "babel src --no-comments --extensions .ts --extensions .tsx --extensions .js --extensions .jsx --ignore **/*.d.ts --ignore **/*.test.ts --out-dir build",
"clean-dist": "rimraf build",
"test": "jest -c=\"jest.config.ts\" --passWithNoTests",
"tdd": "npm test -- --watch --watchman --coverage=false",
"dtsgen": "tsc -d --emitDeclarationOnly --pretty && cp -R build/dts/* build && rm -rf build/dts && rimraf --glob build/**/*.test.*"
},
"peerDependencies": {
"nanoid": "^3.1.32 || ^4.0.0 || ^5.0.0",
"redis": "^4.0.2"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@jest/types": "^29.6.3",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^8.55.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-runner-eslint": "^2.1.2",
"nanoid": "^5.0.0",
"redis": "^4.0.2",
"rimraf": "^5.0.5",
"symlink-dir": "^5.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"publishConfig": {
"access": "public"
},
"jest-runner-eslint": {
"cliOptions": {
"maxWarnings": 0
}
}
}