-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "@srfnstack/redish",
"version": "0.3.4",
"description": "Redis Protocol Object/Document storage in collections",
"author": "Robert Kempton <r@snow87.com>",
"private": false,
"homepage": "https://github.com/narcolepticsnowman/redish",
"license": "MIT",
"files": [
"src/*",
"LICENSE.txt",
"README.md"
],
"main": "src/index.js",
"scripts": {
"test": "jest",
"test:fun": "jest --config funtests.js",
"test:unit": "jest --config unittests.js",
"lint": "standard --env jest --env mocha",
"lint:fix": "standard --env jest --env mocha --fix"
},
"repository": {
"type": "git",
"url": "git@github.com:narcolepticsnowman/redish.git"
},
"keywords": [
"redis",
"database",
"datastore",
"collection",
"redish"
],
"dependencies": {
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.0.0",
"isomorphic-mongo-objectid": "^1.0.9",
"jpflat": "1.2.5"
},
"devDependencies": {
"jest": "^27.2.5",
"redis": "^4.1.0",
"standard": "^17.0.0"
}
}