-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 940 Bytes
/
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
{
"name": "resp3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha",
"benchmark:ours": "node --expose-gc ./benchmark/resp-stream.js",
"benchmark:ioredis": "node --expose-gc ./benchmark/ioredis-stream.js",
"benchmark": "run-p benchmark:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinovyatkin/resp3.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tinovyatkin/resp3/issues"
},
"homepage": "https://github.com/tinovyatkin/resp3#readme",
"devDependencies": {
"@types/node": "16.18.35",
"@typescript-eslint/parser": "6.4.1",
"c8": "7.14.0",
"eslint": "8.48.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.0",
"ioredis": "4.19.1",
"mocha": "9.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.0.5"
}
}