-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "recacheman-mongo",
"version": "1.0.5",
"description": "MongoDB standalone caching library for Node.JS and also cache engine for cacheman",
"author": "Jonathan Brumley <cayasso@gmail.com>",
"main": "./dist/index",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel lib -d dist",
"test": "npm run build && nyc --reporter=html --reporter=text mocha --require @babel/register --exit"
},
"repository": {
"type": "git",
"url": "https://github.com/aalfiann/recacheman-mongo.git"
},
"keywords": [
"cache",
"mongodb",
"caching",
"mongo",
"store",
"ttl",
"cacheman"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-plugin-add-module-exports": "^1.0.4",
"coveralls": "^3.1.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"dependencies": {
"mongodb": "^2.2.36",
"mongodb-uri": "^0.9.7",
"thunky": "^0.1.0"
}
}