-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1 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
{
"name": "rich-text-tokenizer",
"version": "1.0.13",
"description": "Rich text and markdown tokenization made easy.",
"type": "module",
"keywords": [
"markdown",
"rich",
"text",
"tokenizer"
],
"scripts": {
"lint": "eslint src --fix",
"test": "mocha --recursive",
"build": "npm run lint && npm test && esbuild src/index.js --bundle --outfile=lib/index.cjs --packages=external --platform=node"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:andcards/rich-text-tokenizer.git"
},
"files": [
"lib"
],
"main": "lib/index.cjs",
"dependencies": {
"hashtag-regex": "^2.1.0",
"libphonenumber-js": "^1.10.45",
"url-regex-safe": "^4.0.0"
},
"devDependencies": {
"esbuild": "0.19.3",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3"
}
}