-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.9 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
{
"name": "@ideal-postcodes/address-finder-bundled",
"version": "5.0.1",
"description": "JS bundles for Address Finder library",
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/address-finder-bundled/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/address-finder-bundled",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/address-finder-bundled.git"
},
"scripts": {
"semantic-release": "semantic-release --no-ci",
"start": "http-server",
"build": "rollup -c",
"test": "npm run test:local:umd && npm run test:local:esm",
"test:local:umd": "karma start .config/local.umd.ts",
"test:local:esm": "karma start .config/local.esm.ts",
"test:ie": "karma start .config/ie11.ts",
"test:browsers:latest": "karma start .config/latest.ts",
"test:browsers:legacy": "karma start .config/legacy.ts",
"test:browsers": "npm run test:browsers:legacy && npm run test:browsers:latest",
"test:umd": "karma start .config/umd.ts",
"test:esm": "karma start .config/esm.ts",
"test:cypress": "cypress run",
"prepublishOnly": "npm run build"
},
"main": "dist/address-finder.js",
"module": "dist/address-finder.esm.js",
"browserslist": [
"defaults"
],
"files": [
"dist"
],
"prettier": {
"trailingComma": "es5"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"API",
"UK",
"Address Search",
"Address Finder",
"Search",
"Ideal Postcodes"
],
"release": {
"extends": "@cablanchard/semantic-release/dist/npm",
"branches": [
"main",
"next"
]
},
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "~7.17.8",
"@babel/preset-env": "~7.16.11",
"@cablanchard/semantic-release": "~1.3.4",
"@cablanchard/tsconfig": "~2.0.0",
"@ideal-postcodes/supported-browsers": "~2.5.0",
"@open-wc/karma-esm": "~4.0.0",
"@rollup/plugin-babel": "~5.3.0",
"@rollup/plugin-commonjs": "~21.1.0",
"@rollup/plugin-inject": "~4.0.2",
"@rollup/plugin-node-resolve": "~13.2.1",
"@types/mocha": "~9.1.0",
"core-js": "~3.24.1",
"core-js-pure": "~3.22.0",
"cypress": "~9.5.2",
"dotenv": "~10.0.0",
"http-server": "~14.1.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-mocha": "~2.0.1",
"karma-sauce-launcher": "~4.3.4",
"karma-typescript": "~5.5.0",
"mocha": "~9.2.2",
"prettier": "~2.6.1",
"promise-polyfill": "~8.2.0",
"puppeteer": "~22.7.1",
"rollup": "~2.70.1",
"rollup-plugin-terser": "~7.0.2",
"semantic-release": "~17.4.1",
"ts-node": "~10.7.0",
"typescript": "~4.6.2"
},
"dependencies": {
"@ideal-postcodes/address-finder": "~5.1.3"
}
}