forked from Qovery/RedisLess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 851 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 851 Bytes
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
{
"name": "redisless",
"version": "1.0.0",
"description": "RedisLess in an embedded and scalable in-memory Redis-like library",
"main": "lib/index.js",
"scripts": {
"bench": "node test/bench.js",
"test": "jest --forceExit"
},
"keywords": [
"redisless",
"redis",
"embedded",
"serverless"
],
"author": "Romaric Philogene <rphilogene@qovery.com> (https://www.qovery.com)",
"license": "MIT",
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"dependencies": {
"ffi-napi": "^4.0.3"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^26.6.3",
"async-redis": "^1.1.7"
}
}