forked from mailslurp/mailslurp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "mailslurp-client",
"description": "Send and receive emails in code",
"version": "6.7.0",
"license": "MIT",
"author": "mailslurp.com",
"homepage": "https://www.mailslurp.com",
"keywords": [
"mailslurp",
"email",
"test",
"smtp",
"recieve",
"send"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": "/~https://github.com/mailslurp/mailslurp-client",
"scripts": {
"build": "tsc --outDir dist/",
"prepublishOnly": "npm run build",
"test": "jest",
"docs": "typedoc index.ts",
"fmt": "prettier --write **.{ts,json,js}"
},
"dependencies": {
"debug": "^4.1.1",
"mailslurp-swagger-sdk-ts": "6.1.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"jest": "^24.1.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.0",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-map": "^1.0.0",
"typedoc-plugin-markdown": "^1.1.27",
"typescript": "^3.5.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
}
}