-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "cloudmailin",
"version": "0.1.0",
"description": "Official Node.js for the CloudMailin Email API - https://www.cloudmailin.com",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint ./src",
"test": "jest",
"prepare": "rm -rf ./dist && tsc",
"docs": "rm -rf ./docs && typedoc ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudmailin/cloudmailin-js.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"cloudmailin",
"email",
"mail",
"smtp",
"send",
"headers",
"nodemailer"
],
"author": "CloudMailin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudmailin/cloudmailin-js/issues"
},
"homepage": "https://www.cloudmailin.com",
"readme": "https://github.com/cloudmailin/cloudmailin-js#readme",
"dependencies": {
"axios": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"jest": "^29.7.0",
"openapi-typescript": "^3.0.3",
"ts-jest": "^29.1.2",
"typedoc": "^0.25.7",
"typescript": "^4.1.5"
},
"jest": {
"verbose": true,
"preset": "ts-jest"
}
}