forked from pelias/parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.35 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
116
117
118
119
120
121
122
123
124
{
"name": "mailwoman",
"version": "0.3.1",
"description": "Utilities for working with contacts for email, phone, and postal addresses.",
"keywords": [
"pelias"
],
"homepage": "https://github.com/isp-nexus/mailwoman",
"bugs": {
"url": "https://github.com/pelias/parser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/parser.git"
},
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "Teffen Ellis",
"email": "[email protected]"
},
{
"name": "Pelias Contributors"
}
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./out/index.js",
"./classifier/super": "./out/classifier/super/index.js",
"./classifier": "./out/classifier/index.js",
"./classification": "./out/classification/index.js",
"./server": "./out/server/index.js",
"./sdk/test/utils": "./out/sdk/test/utils/index.js",
"./sdk/repo": "./out/sdk/repo.js",
"./*": "./out/*"
},
"bin": "./out/bin/cli.js",
"files": [
"!out/test/**/*",
"!*/**/*.ts",
"out/**/*.js",
"out/**/*.js.map",
"out/**/*.d.ts",
"out/**/*.d.ts.map",
"out/**/*.json",
"resources/**/*"
],
"scripts": {
"demo": "mailwoman parse '3551 W. Hillsboro Blvd Deerfield Beach, FL 33442'",
"compile": "NODE_OPTIONS=\"--max-old-space-size=3000\" tsc -b",
"compile:clean": "node ./sdk/out/scripts/clean.js",
"test:unit": "tape ./out/**/*.test.js --ignore ./out/test/functional/**/*.test.js | npx faucet",
"test:functional": "tape ./out/test/functional/*.test.js | npx faucet",
"test:oa": "tape ./out/openaddresses.js | npx faucet",
"test": "tape ./out/**/*.test.js | npx faucet",
"serve": "node ./server/http.js",
"ci": "./bin/test",
"lint": "run-s lint:prettier:check lint:eslint:check",
"lint:fix": "run-s lint:prettier:fix lint:eslint:fix",
"lint:prettier:check": "prettier --cache --check -u .",
"lint:prettier:fix": "prettier --cache --write -u .",
"lint:prettier": "eslint .",
"lint:eslint:check": "eslint .",
"lint:eslint:fix": "eslint --fix .",
"prepare": "husky"
},
"prettier": "@sister.software/prettier-config",
"release": {
"branch": "main",
"success": []
},
"dependencies": {
"@fragaria/address-formatter": "^6.3.0",
"path-ts": "^1.0.5",
"pluralize": "^8.0.0",
"remove-accents": "^0.5.0"
},
"devDependencies": {
"@sister.software/eslint-config": "7.1.3",
"@sister.software/prettier-config": "7.1.3",
"@sister.software/tsconfig": "7.1.3",
"@types/better-sqlite3": "^7.6.11",
"@types/deep-eql": "^4.0.2",
"@types/express": "^4.17.21",
"@types/node": "^22.8.1",
"@types/pluralize": "^0.0.33",
"@types/tape": "^5.6.4",
"better-sqlite3": "^11.5.0",
"chalk": "^5.3.0",
"csv-parse": "^5.5.6",
"deep-eql": "^4.0.0",
"eslint": "^9.13.0",
"eslint-plugin-html": "^8.1.2",
"express": "^4.21.1",
"fast-glob": "^3.3.2",
"faucet": "^0.0.4",
"husky": "^9.1.6",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.3",
"tape": "^5.9.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
},
"peerDependencies": {
"better-sqlite3": "^11.5.0",
"express": "^4.21.1"
},
"peerDependenciesMeta": {
"better-sqlite3": {
"optional": true
},
"express": {
"optional": true
}
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 10.0.0"
}
}