-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "@iovalkey/commands",
"version": "0.1.0",
"description": "Valkey commands",
"main": "dist/index.js",
"files": [
"dist/",
"commands.json"
],
"scripts": {
"pretest": "npm run build && npm run lint",
"test": "mocha",
"lint": "eslint .",
"build": "rm -rf built && tsc",
"gen": "node tools/build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/iovalkey/commands.git"
},
"keywords": [
"redis",
"commands",
"prefix"
],
"author": "Zihua Li <[email protected]> (http://zihua.li)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iovalkey/commands/issues"
},
"homepage": "https://github.com/iovalkey/commands",
"devDependencies": {
"@types/node": "^22.10.9",
"chai": "^4.0.0",
"eslint": "^9.18.0",
"iovalkey": "^0.2.2",
"mocha": "^11.1.0",
"neostandard": "^0.12.0",
"safe-stable-stringify": "^2.5.0",
"typescript": "^5.0.0"
}
}