-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 2.87 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 2.87 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@ideal-postcodes/core-axios",
"version": "4.1.7",
"description": "Axios based client for api.ideal-postcodes.co.uk",
"author": {
"name": "Ideal Postcodes",
"email": "support@ideal-postcodes.co.uk",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/core-axios/issues",
"email": "support@ideal-postcodes.co.uk"
},
"homepage": "https://github.com/ideal-postcodes/core-axios",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/core-axios.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "esm/index.js",
"scripts": {
"semantic-release": "semantic-release",
"test:watch": "NODE_ENV=test mocha --watch",
"test:nock:reload": "NODE_ENV=test RECORD=true mocha",
"test": "NODE_ENV=test nyc mocha",
"lint": "eslint lib/**/*.ts",
"build": "tsc && tsc -p tsconfig.esm.json",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"prepublishOnly": "npm run test && npm run build"
},
"files": [
"dist",
"esm"
],
"browserslist": [
"ie 11",
"last 2 versions"
],
"prettier": {
"editorconfig": true,
"trailingComma": "es5"
},
"nyc": {
"include": [
"lib/**/*.ts",
"generate/**/*.ts"
],
"exclude": [
"dist/*",
"**/*.d.ts",
"generate/index.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"mocha": {
"extension": [
"ts"
],
"exit": true,
"fullTrace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"engines": {
"node": ">=10.0"
},
"keywords": [
"API",
"Node.js",
"Axios",
"UK",
"Address",
"Postcode",
"Search",
"Ideal Postcodes"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"license": "MIT",
"dependencies": {
"@ideal-postcodes/core-interface": "~3.2.1",
"axios": "~1.13.6"
},
"devDependencies": {
"@cablanchard/tsconfig": "2.0.0",
"@ideal-postcodes/api-fixtures": "~1.3.0",
"@ideal-postcodes/api-typings": "~2.1.0",
"@types/chai": "~4.3.0",
"@types/mocha": "~10.0.7",
"@types/nock": "~11.1.0",
"@types/node": "~24.4.0",
"@types/prettier": "~3.0.0",
"@types/sinon": "~17.0.2",
"chai": "~6.0.1",
"codecov": "~3.8.3",
"mocha": "~11.7.2",
"nock": "14.0.10",
"nyc": "~17.1.0",
"prettier": "~3.6.2",
"@semantic-release/changelog": "~6.0.3",
"@semantic-release/git": "~10.0.1",
"@semantic-release/github": "~12.0.2",
"@semantic-release/npm": "~13.1.3",
"semantic-release": "~25.0.2",
"sinon": "~21.0.0",
"source-map-support": "~0.5.21",
"ts-node": "~10.9.2",
"typescript": "~5.9.2"
}
}