-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 957 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
{
"name": "ceych",
"version": "4.1.0",
"description": "Wraps any asynchronous function and provides caching of the result",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --exit",
"posttest": "npm run lint",
"lint": "eslint .",
"coverage": "istanbul cover _mocha -- -R dot"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/ceych/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@hapi/catbox": "^12.1.1",
"@hapi/catbox-memory": "^6.0.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bbc/ceych.git"
},
"keywords": [
"cache",
"caching",
"asynchronous",
"function",
"ceych",
"wrapper",
"promise",
"memoize"
],
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.38.0",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"sinon": "^15.0.3",
"lodash": "^4.17.21"
}
}