-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "mailbuilder",
"description": "Node.JS module for generating e-mail messages that can be streamed to SMTP or GMail raw API",
"license": "MIT",
"author": "Konstantin Vyatkin <tino@vtkn.io>",
"homepage": "https://github.com/tinovyatkin/mailbuilder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tinovyatkin/mailbuilder.git"
},
"bugs": {
"url": "https://github.com/tinovyatkin/mailbuilder/issues"
},
"version": "2.1.2",
"type": "module",
"main": "./dist/cjs/index.js",
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"dist/cjs/package.json"
],
"scripts": {
"prebuild": "rm -rf dist coverage",
"build": "tsc",
"postbuild": "tsc -p tsconfig.cjs.json && cp -f test/cjs/package.json dist/cjs/",
"lint": "eslint --ext=ts,js .",
"prepublishOnly": "yarn build",
"pretest": "yarn build",
"test": "c8 mocha"
},
"devDependencies": {
"@types/chai": "4.3.6",
"@types/mailparser": "3.4.0",
"@types/mocha": "10.0.1",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"c8": "8.0.1",
"chai": "4.3.10",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-node": "11.1.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"mailparser": "3.6.5",
"mocha": "10.2.0",
"npm-package-json-lint": "7.0.0",
"prettier": "3.0.3",
"prettier-package-json": "2.8.0",
"source-map-support": "0.5.19",
"typescript": "5.2.2"
},
"keywords": [
"email",
"gmail",
"mime"
],
"engines": {
"node": "^10.17 || >=12.3",
"yarn": ">=1.19"
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
}