-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
90 lines (90 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@bbc/consumer-contracts",
"version": "4.4.2",
"description": "Consumer driven contracts for Node.js",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint .",
"posttest": "npm run lint",
"coverage": "istanbul cover _mocha -- -R dot",
"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"
},
"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/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",
"istanbul": "^0.4.5",
"mocha": "^10.6.0",
"nock": "^13.5.4",
"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
}
}