-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 975 Bytes
/
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
{
"name": "micro-cacheable",
"version": "2.0.1",
"description": "A micro utility for data caching",
"author": "fmiras",
"license": "MIT",
"repository": "fmiras/micro-cacheable",
"bugs": "https://github.com/fmiras/micro-cacheable/issues",
"homepage": "https://github.com/fmiras/micro-cacheable",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "xo && nyc ava",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"xo",
"prettier --single-quote --no-semi --write",
"git add"
]
},
"xo": {
"extends": "prettier"
},
"keywords": [
"micro",
"cache",
"microservices",
"micro-cache",
"micro-cacheable"
],
"devDependencies": {
"ava": "1.2.1",
"husky": "1.3.0",
"nyc": "13.3.0",
"lint-staged": "8.1.0",
"prettier": "1.16.4",
"sinon": "7.2.4",
"sleep": "6.0.0",
"xo": "0.22.0"
},
"dependencies": {
"mongodb": "3.2.0"
}
}