-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.27 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.27 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@bbc/consumer-contracts",
"version": "4.5.1",
"description": "Consumer driven contracts for Node.js",
"main": "dist/index.js",
"scripts": {
"test": "mocha && pnpm run lint",
"lint": "eslint .",
"coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary",
"format": "prettier --log-level warn --write \"**/*.{js,json,jsx,md,ts,tsx,html}\"",
"format:check": "prettier --check \"**/*.{js,json,jsx,md,ts,tsx,html}\"",
"build": "tsc"
},
"bin": {
"consumer-contracts": "./dist/lib/cli.js"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bbc/consumer-contracts.git"
},
"keywords": [
"consumer",
"contracts"
],
"author": "ibl-team@lists.forge.bbc.co.uk",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bbc/consumer-contracts/issues"
},
"homepage": "https://github.com/bbc/consumer-contracts#readme",
"dependencies": {
"@bbc/http-transport": "^4.5.0",
"commander": "^12.1.0",
"debug": "^4.3.5",
"filehound": "^1.17.6",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"picocolors": "^1.0.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/chai": "^4.3.17",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.7",
"@types/mocha": "^10.0.7",
"@types/node": "^24.10.1",
"@types/node-fetch": "^2.6.13",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^5.1.1",
"eslint": "^8.57.0",
"eslint-config-iplayer": "^9.2.0",
"eslint-plugin-mocha": "^10.4.3",
"mocha": "^10.6.0",
"nock": "^13.5.4",
"nyc": "^17.1.0",
"prettier": "^3.3.2",
"sinon": "^18.0.0",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"eslintConfig": {
"extends": [
"iplayer/base",
"iplayer/ts",
"prettier"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {}
},
"mocha": {
"exit": true,
"recursive": true,
"full-trace": true,
"extension": [
"ts"
],
"node-option": [
"import=tsx"
],
"timeout": 5000
}
}