-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 999 Bytes
/
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
{
"name": "node-mailwizz",
"version": "2.0.10",
"description": "MailWizz implementation",
"author": "Mikel Calvo <[email protected]> (www.mikelcalvo.net)",
"keywords": ["mailwizz-api", "mailwizz", "mailwizz-node", "mailwizz-nodejs"],
"license": "ISC",
"readmeFilename": "README.md",
"homepage": "https://github.com/mikelcalvo/node-mailwizz#readme",
"bugs": {
"url": "https://github.com/mikelcalvo/node-mailwizz/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"**/*.ts\" \"**/*.js\" \"**/*.json\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikelcalvo/node-mailwizz.git"
},
"dependencies": {
"axios": "1.7.7",
"qs": "6.13.0",
"querystring": "0.2.1"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/node": "22.5.2",
"prettier": "3.3.3",
"typescript": "^5.5.4"
}
}