forked from TrueSparrowSystems/UniCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
{
"name": "@plgworks/unicache",
"version": "1.0.0",
"description": "UniCache is an NPM package that provides singleton interface and behavior for Memcached, Redis and In-memory caching. Easily interact or switch between them in minutes!",
"main": "index.js",
"scripts": {
"start": "index.js",
"pre-commit": "lint-staged",
"test": "source test/env/inMemory.sh && nyc --silent --no-clean ./node_modules/.bin/mocha --recursive \"./test/*.js\" --exit && source test/env/memcached.sh && nyc --silent --no-clean ./node_modules/.bin/mocha --recursive \"./test/*.js\" --exit && source test/env/redis.sh && nyc --silent --no-clean ./node_modules/.bin/mocha --recursive \"./test/*.js\" --exit && nyc report"
},
"repository": {
"type": "git",
"url": "https://github.com/PLG-Works/UniCache.git"
},
"keywords": [
"UniCache",
"memcached",
"redis",
"in-memory",
"dev-tools",
"opensource",
"caching"
],
"author": "PLG Works",
"license": "MIT",
"bugs": {
"url": "https://github.com/PLG-Works/UniCache/issues"
},
"homepage": "https://github.com/PLG-Works/UniCache#readme",
"dependencies": {
"memcached": "2.2.2",
"redis": "3.1.1",
"@plgworks/base": "^1.0.0"
},
"devDependencies": {
"chai": "4.3.0",
"eslint": "6.5.1",
"ink-docstrap": "1.3.2",
"lint-staged": "8.0.3",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"pre-commit": "1.2.2",
"prettier": "1.14.3"
},
"pre-commit": [
"pre-commit"
],
"lint-staged": {
"*.js": [
"prettier --write --config .prettierrc.json",
"git add"
]
}
}