-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 755 Bytes
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
{
"name": "@arraypress/text",
"version": "2.1.0",
"description": "Text utilities — truncation, CSV escaping, HTML escaping, and fuzzy-match normalisation. (slugify moved to @arraypress/slug)",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"types": "./src/index.d.ts"
}
},
"files": [
"src"
],
"scripts": {
"test": "node --test tests/text.test.js"
},
"keywords": [
"text",
"truncate",
"csv",
"escape",
"html",
"escape-html",
"normalize",
"fuzzy-match"
],
"author": "David Sherlock",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arraypress/text"
}
}