-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "node-mailwizz",
"version": "2.1.3",
"description": "MailWizz implementation",
"author": "Mikel Calvo <contact@mikecalvo.net> (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": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write \"**/*.ts\" \"**/*.js\" \"**/*.json\"",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikelCalvo/node-mailwizz.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"axios": "1.14.0",
"qs": "6.15.0",
"querystring": "0.2.1"
},
"devDependencies": {
"@types/express": "5.0.6",
"@types/node": "25.5.2",
"@vitest/coverage-v8": "^4.1.3",
"axios-mock-adapter": "^2.1.0",
"prettier": "3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.1.3"
}
}