forked from ptarjan/node-cache
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 752 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 752 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
36
{
"name": "tinycache",
"version": "1.1.2",
"description": "A simple in-memory cache in ~100 lines.",
"author": "Andy Burke <aburke@bitflood.org>",
"url": "https://github.com/andyburke/tinycache",
"license": "MIT",
"contributors": [
{
"name": "Paul Tarjan",
"email": "npm@paulisageek.com",
"web": "https://github.com/ptarjan"
}
],
"keywords": [
"cache",
"in-memory",
"storage"
],
"main": "./index.js",
"scripts": {
"test": "mocha -R list"
},
"repository": {
"type": "git",
"url": "git://github.com/andyburke/tinycache.git"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.8.0",
"mocha": "^5.2.0"
},
"dependencies": {
"js-sizeof": "0.0.1"
}
}