-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.41 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
55
56
57
58
59
60
61
62
63
{
"name": "@bbc/http-transport-cache",
"version": "5.0.0",
"description": "Caching middleware",
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/bbc/http-transport-cache.git"
},
"bugs": {
"url": "https://github.com/bbc/http-transport-cache/issues"
},
"engines": {
"node": ">=8.13.0"
},
"keywords": [
"http-transport",
"caching",
"http",
"client",
"middleware"
],
"license": "Apache-2.0",
"devDependencies": {
"@bbc/http-transport": "^4.3.0",
"@bbc/http-transport-to-error": "^2.2.0",
"chai": "^4.1.2",
"eslint": "^8.54.0",
"eslint-config-iplayer": "^9.1.0",
"eslint-plugin-mocha": "^10.2.0",
"mocha": "^10.3.0",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"sinon": "^9.0.3"
},
"dependencies": {
"@hapi/catbox": "^12.1.1",
"@hapi/catbox-memory": "^6.0.1",
"@hapi/wreck": "^18.0.1",
"bluebird": "^3.7.2",
"lodash": "^4.17.20"
},
"peerDependencies": {
"@bbc/http-transport": "^3 || ^4"
},
"eslintConfig": {
"extends": "iplayer",
"parserOptions": {
"ecmaVersion": "latest"
}
},
"mocha": {
"recursive": true,
"exit": true
}
}