-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@bbc/http-transport",
"version": "4.6.2",
"description": "A flexible, modular REST client built for ease-of-use and resilience.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha",
"jsdoc": "jsdoc -c ./docconfig/jsdoc.json",
"lint": "eslint ./lib ./test",
"coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/bbc/http-transport.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/http-transport/issues"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"https",
"rest client",
"http-transport",
"cache",
"circuit",
"breaker",
"rest",
"http",
"json",
"client"
],
"devDependencies": {
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.2",
"eslint": "^8.48.0",
"eslint-config-iplayer": "^8.0.0",
"eslint-plugin-mocha": "^10.1.0",
"jsdoc": "^3.5.5",
"mocha": "^7.2.0",
"nock": "^11.9.1",
"nyc": "^15.1.0",
"sinon": "^1.15.3"
},
"dependencies": {
"@types/node-fetch": "^2.6.11",
"http-proxy-agent": "^7.0.0",
"koa-compose": "^4.0.0",
"lodash": "^4.17.4",
"node-fetch": "^2.7.0",
"qs": "^6.5.1"
},
"mocha": {
"recursive": true,
"exit": true
},
"eslintConfig": {
"extends": "iplayer",
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"space-before-function-paren": 0
}
}
}