-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.81 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
{
"name": "@sesamecare-oss/redlock",
"version": "3.6.0",
"description": "A modern node.js redlock implementation for distributed redis locks",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Developers <[email protected]>",
"license": "UNLICENSED",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "yarn dlx rimraf ./dist",
"lint": "eslint .",
"postinstall": "coconfig",
"test": "vitest",
"test:unit": "vitest unit.spec.ts",
"test:system": "vitest system.spec.ts"
},
"keywords": [
"typescript",
"sesame"
],
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sesamecare/redlock.git"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"publishCmd": "yarn dlx pinst --disable"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"config": {
"coconfig": "@openapi-typescript-infra/coconfig"
},
"devDependencies": {
"@openapi-typescript-infra/coconfig": "^4.2.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^9.2.1",
"@types/node": "^16.18.60",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"coconfig": "^1.0.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"ioredis": "^5.3.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"peerDependencies": {
"ioredis": ">=5"
}
}