forked from ptarjan/node-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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": "easy-memory-cache",
"version": "0.2.0",
"description": "A simple in-memory cache which can create multiple instances and keep track of misses and hits, forked from npm memory-cache",
"contributors": [
"Paul Tarjan <npm@paulisageek.com>",
"Ramon Snir <ramon@dynamicyield.com>",
"Jacob Wenger <wenger.jacob@gmail.com>",
"Easybird <info@easybird.be>"
],
"keywords": [
"cache",
"ram",
"simple",
"storage"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/easybird/easy-memory-cache.git"
},
"scripts": {
"test": "gulp test"
},
"license": "BSD-2-Clause",
"devDependencies": {
"chai": "^2.2.0",
"gulp": "^3.8.11",
"gulp-exit": "0.0.2",
"gulp-istanbul": "^0.7.0",
"gulp-jshint": "^1.10.0",
"gulp-mocha": "^2.0.1",
"jshint-stylish": "^1.0.1",
"sinon": "^1.14.1",
"sinon-chai": "^2.7.0"
},
"bugs": {
"url": "https://github.com/easybird/easy-memory-cache/issues"
},
"homepage": "https://github.com/easybird/easy-memory-cache#readme",
"author": ""
}