-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (86 loc) · 2.39 KB
/
package.json
File metadata and controls
87 lines (86 loc) · 2.39 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mailosaur",
"version": "11.0.0",
"description": "The Mailosaur Node library lets you integrate email and SMS testing into your continuous integration process.",
"keywords": [
"email",
"sms",
"testing",
"automation",
"selenium",
"webdriver",
"nightwatch"
],
"homepage": "https://github.com/mailosaur/mailosaur-node",
"author": "Mailosaur Ltd <code@mailosaur.com> (https://mailosaur.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mailosaur/mailosaur-node.git"
},
"bugs": "https://github.com/mailosaur/mailosaur-node/issues",
"engines": {
"node": ">=16"
},
"main": "cjs/mailosaur.js",
"types": "cjs/mailosaur.d.ts",
"exports": {
".": {
"import": {
"types": "./esm/mailosaur.d.ts",
"default": "./esm/mailosaur.js"
},
"require": {
"types": "./cjs/mailosaur.d.ts",
"default": "./cjs/mailosaur.js"
}
},
"./models": {
"import": {
"types": "./esm/models/index.d.ts",
"default": "./esm/models/index.js"
},
"require": {
"types": "./cjs/models/index.d.ts",
"default": "./cjs/models/index.js"
}
}
},
"files": [
"cjs/",
"esm/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/node": "^22.0.0",
"nodemailer": "~7.0.6",
"typescript": "^5.9.3",
"vitest": "^3.1.1"
},
"peerDependencies": {
"@types/node": ">=16"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > cjs/package.json",
"build:esm": "tsc -p tsconfig.esm.json && echo '{\"type\":\"module\"}' > esm/package.json",
"build": "npm run build:cjs && npm run build:esm",
"clean": "rm -rf cjs esm",
"prepack": "npm run build",
"test": "npm run lint && vitest run",
"lint": "if [ -n \"$CI\" ]; then (npm run lint:strict) else (npm run lint:default) fi",
"lint:default": "npx biome check . --diagnostic-level=warn && npx tsc -p tsconfig.test.json",
"lint:strict": "npx biome check . --diagnostic-level=warn --error-on-warnings && npx tsc -p tsconfig.test.json",
"lint:fix": "npx biome check --write .",
"format": "npx biome format --write ."
},
"dependencies": {
"https-proxy-agent": "^7.0.6"
}
}