-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.06 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
{
"name": "uk-clear-addressing",
"version": "4.2.1",
"description": "Converts UK address fragments into a properly formatted address recognised by Royal Mail's Clear Addressing Guidelines. Maps perfectly from Royal Mails PAF database",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Ideal Postcodes",
"email": "[email protected]",
"url": "https://ideal-postcodes.co.uk"
},
"bugs": {
"url": "https://github.com/ideal-postcodes/uk-clear-addressing/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ideal-postcodes/uk-clear-addressing",
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/uk-clear-addressing.git"
},
"scripts": {
"prepublish": "npm run build",
"semantic-release": "semantic-release --no-ci",
"test": "mocha",
"docs": "typedoc",
"build": "tsc && tsc -p tsconfig.esm.json"
},
"keywords": [
"UK",
"Addressing",
"Royal",
"Mail",
"PAF"
],
"mocha": {
"extension": [
"ts"
],
"exit": true,
"fullTrace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"license": "MIT",
"files": [
"dist",
"esm",
"example.js"
],
"prettier": {
"trailingComma": "es5"
},
"runkitExampleFilename": "example.js",
"readmeFilename": "README.md",
"release": {
"extends": "@cablanchard/semantic-release/dist/npm"
},
"devDependencies": {
"@cablanchard/semantic-release": "~1.3.4",
"@cablanchard/tsconfig": "2.0.0",
"@ideal-postcodes/doc-assets": "~1.0.6",
"@types/chai": "~4.3.0",
"@types/mocha": "~9.1.0",
"@types/node": "~18.14.6",
"chai": "~4.3.0",
"mocha": "~9.2.1",
"prettier": "~2.6.1",
"semantic-release": "~22.0.12",
"source-map-support": "~0.5.6",
"ts-node": "~10.7.0",
"typedoc": "~0.22.4",
"typescript": "~4.6.3"
},
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@cablanchard/koelle-sort": "~0.1.0"
}
}