forked from mat-sz/letterparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.64 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
{
"name": "letterparser",
"version": "0.0.7",
"description": "Raw e-mail parsing with MIME and plaintext support (isomorphic)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"email",
"e-mail",
"mail",
"mime",
"mailparser",
"emailparser",
"mail-parser",
"email-parser",
"e-mail-parser",
"mime-parser",
"mime-message",
"mime-message-parser",
"parser",
"typescript",
"isomorphic"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/mat-sz/letterparser.git"
},
"bugs": {
"url": "https://github.com/mat-sz/letterparser/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"__tests__/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"homepage": "https://github.com/mat-sz/letterparser",
"author": "Mat Sz <[email protected]>",
"license": "BSD-3-Clause-Clear",
"devDependencies": {
"@types/base64-js": "^1.2.5",
"@types/jest": "^25.1.4",
"@types/node": "^13.1.4",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.4"
},
"dependencies": {
"base64-js": "^1.3.1",
"lettercoder": "^0.0.4"
}
}