-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 2.88 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
108
109
110
111
112
113
114
115
{
"name": "@ideal-postcodes/supported-browsers",
"version": "2.5.0",
"description": "Browsers support by ideal-postcodes.co.uk",
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/supported-browsers/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/supported-browsers",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/supported-browsers.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run lint && NODE_ENV=test nyc mocha",
"docs": "typedoc --mode file --out docs/ --name 'Ideal Postcodes Browser Support Matrix' --theme minimal --excludePrivate --hideGenerator --excludeExternals lib/",
"lint": "eslint lib/**/*.ts",
"build": "npm run lint && tsc",
"semantic-release": "semantic-release",
"prepublishOnly": "npm test && npm run build",
"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"
},
"prettier": {
"trailingComma": "es5"
},
"mocha": {
"extension": [
"ts"
],
"exit": true,
"fullTrace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"nyc": {
"include": [
"lib/**/*.ts"
],
"exclude": [
"dist/*",
"**/*.d.ts"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"all": true
},
"engines": {
"node": ">=10.0"
},
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"API",
"Interface",
"UK",
"Address",
"Postcode",
"Browser Matrix",
"Ideal Postcodes"
],
"release": {
"extends": "@cablanchard/semantic-release/dist/npm"
},
"devDependencies": {
"@cablanchard/eslint-config": "~2.0.0",
"@cablanchard/semantic-release": "~1.3.4",
"@cablanchard/tsconfig": "~2.0.0",
"@types/chai": "~4.2.11",
"@types/mocha": "~8.2.0",
"@types/node": "~14.14.0",
"chai": "~4.3.0",
"eslint": "~7.24.0",
"mocha": "~8.3.0",
"nyc": "~15.1.0",
"prettier": "~2.2.0",
"semantic-release": "~17.4.0",
"source-map-support": "~0.5.19",
"ts-node": "~9.1.0",
"typedoc": "~0.19.0",
"typescript": "~4.0.2",
"dotenv": "~8.2.0",
"karma": "~6.3.1",
"karma-chrome-launcher": "~3.1.0",
"core-js": "~3.10.0",
"karma-cli": "~2.0.0",
"karma-mocha": "~2.0.1",
"karma-sauce-launcher": "~4.3.3",
"karma-typescript": "~5.5.0",
"puppeteer": "~8.0.0",
"regenerator-runtime": "~0.13.7"
},
"dependencies": {}
}