-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "cypress-mailslurp",
"author": "mailslurp",
"description": "Cypress email and SMS plugin for MailSlurp. Create test email accounts to send and receive emails in Cypress tests. Read SMS and TXT messages too and test against fake mailservers.",
"version": "1.11.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint --fix src test cypress",
"cypress": "cypress run",
"cypress-open": "cypress open",
"readme": "node scripts/readme.js"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/cypress-mailslurp.esm.js",
"devDependencies": {
"cypress": "^14.5.4",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-cypress": "^5.1.1",
"fast-glob": "^3.3.3",
"jest-diff": "^30.0.5",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2"
},
"dependencies": {
"mailslurp-client": "^16.0.0"
}
}