-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 913 Bytes
/
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
{
"name": "@cityssm/text-to-search-terms",
"description": "Reduces large strings of text into distinct search terms.",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"version": "0.2.2",
"exports": "./index.js",
"scripts": {
"test": "mocha",
"coverage": "c8 mocha"
},
"author": "The Corporation of the City of Sault Ste. Marie",
"license": "MIT",
"homepage": "https://github.com/cityssm/text-to-search-terms#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cityssm/text-to-search-terms.git"
},
"bugs": {
"url": "https://github.com/cityssm/text-to-search-terms/issues"
},
"devDependencies": {
"@types/diacritics": "^1.3.3",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"eslint-config-cityssm": "^18.1.2",
"prettier-config-cityssm": "^1.0.0"
},
"dependencies": {
"diacritics": "^1.3.0"
}
}