-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.85 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@ideal-postcodes/core-browser",
"version": "3.0.1",
"description": "Browser javascript 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-browser/issues",
"email": "support@ideal-postcodes.co.uk"
},
"homepage": "https://github.com/ideal-postcodes/core-browser",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/core-browser.git"
},
"scripts": {
"set-env": "node",
"build": "tsc && tsc -p tsconfig.esm.json",
"semantic-release": "semantic-release --no-ci",
"lint": "eslint lib/**/*.ts",
"coverage": "codecov",
"docs": "typedoc",
"prepublishOnly": "npm run test && npm run build",
"test": "karma start",
"test:browsers": "npm run test:browsers:latest && npm run test:browsers:legacy",
"test:browsers:latest": "karma start .config/latest.conf.ts",
"test:browsers:legacy": "karma start .config/legacy.conf.ts"
},
"release": {
"extends": "@cablanchard/semantic-release/dist/npm",
"branches": [
"master",
{
"name": "beta",
"prerelease": true
}
]
},
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"esm"
],
"prettier": {
"editorconfig": true,
"trailingComma": "es5"
},
"engines": {
"node": ">=8.0"
},
"keywords": [
"API",
"UK",
"Address",
"Postcode",
"Search",
"Ideal Postcodes",
"Browser"
],
"license": "MIT",
"dependencies": {
"@ideal-postcodes/core-interface": "3.1.0"
},
"devDependencies": {
"@cablanchard/eslint-config": "~2.0.1",
"@cablanchard/semantic-release": "~1.3.0",
"@cablanchard/tsconfig": "~2.0.0",
"@ideal-postcodes/api-typings": "~2.1.0",
"@ideal-postcodes/doc-assets": "^1.0.6",
"@ideal-postcodes/supported-browsers": "~2.5.0",
"@types/chai": "~4.2.3",
"@types/dotenv": "~8.2.0",
"@types/karma": "~6.3.0",
"@types/mocha": "~9.1.0",
"@types/node": "~17.0.13",
"@types/puppeteer": "~5.4.3",
"chai": "~4.3.0",
"codecov": "~3.8.0",
"core-js": "~3.21.0",
"dotenv": "~10.0.0",
"eslint": "~7.32.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage": "~2.0.1",
"karma-mocha": "~2.0.1",
"karma-sauce-launcher": "~4.3.3",
"karma-typescript": "~5.5.1",
"mocha": "~9.1.1",
"nock": "~13.2.2",
"prettier": "~2.4.1",
"promise-polyfill": "~8.2.0",
"puppeteer": "~13.5.1",
"regenerator-runtime": "~0.13.3",
"semantic-release": "~19.0.3",
"sinon": "~11.1.1",
"ts-node": "~10.4.0",
"typedoc": "~0.21.2",
"typescript": "~4.4.3",
"whatwg-fetch": "~3.6.1"
}
}