-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 851 Bytes
/
package.json
File metadata and controls
40 lines (40 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
36
37
38
39
40
{
"name": "ps-cache",
"description": "ps-cache, pubsub caching library",
"version": "0.5.0",
"author": "Mobiltron, Inc <dev@mobiltron.com>",
"contributors": [
"Vassilios Karakoidas <v.karakoidas@mobiltron.com> (http://bkarak.wizhut.com/blog/)",
"Stavros Schizas <stavros@mobiltron.com> (http://mobiltron.com)"
],
"keywords": [
"cache",
"local",
"pubsub",
"caching"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MobiltronInc/ps-cache"
},
"dependencies": {
"lodash": "latest"
},
"devDependencies": {
"assert": "latest",
"mocha": "latest"
},
"files": [
"lib/",
"LICENSE.md",
"README.md",
"index.js"
],
"engines": {
"node": ">= 6.0"
},
"scripts": {
"test": "mocha --reporter spec --check-leaks --bail test/"
}
}