-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "tempo-email-parser",
"version": "0.7.7",
"description": "Processes HTML email for display. Extracts quotations and more.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "yarn run build",
"build": "tsc -D",
"test": "jest",
"generate:fixtures": "npx ts-node ./src/tests/prepareMessage/generateFixtureOutputs.ts",
"lint": "tsc --noEmit && eslint . --ext .js,.jsx,.ts,.tsx",
"benchmarks": "npx ts-node --transpile-only ./benchmarks/message-splitter.ts",
"benchmarks:libraries": "npx ts-node --transpile-only ./benchmarks/libraries.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourtempo/tempo-email-parser.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yourtempo/tempo-email-parser/issues"
},
"homepage": "https://github.com/yourtempo/tempo-email-parser#readme",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/dompurify": "^2.0.1",
"@types/jest": "^26.0.22",
"@types/jsdom": "^12.2.4",
"@types/linkifyjs": "^2.1.3",
"@types/prettier": "^1.19.0",
"@types/sanitize-html": "^1.20.2",
"@types/xmldom": "^0.1.29",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"benchmark": "^2.1.4",
"dompurify": "^2.0.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.3",
"jsdom": "^15.2.1",
"linkifyjs": "^2.1.8",
"planer": "^1.1.1",
"prettier": "^1.19.1",
"sanitize-html": "^1.20.1",
"talonjs": "^1.0.24",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"xmldom": "^0.2.1"
},
"dependencies": {
"@types/cheerio": "^0.22.15",
"autolinker": "^3.11.1",
"cheerio": "^1.0.0-rc.3",
"email-validator": "^2.0.4",
"htmlparser2": "^6.0.1",
"is-valid-domain": "^0.0.20",
"regx": "^1.0.4"
}
}