-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 904 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 904 Bytes
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
{
"name": "@mailtarget/nodejs-sdk",
"version": "1.0.2",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist & tsup",
"release": "npm run build && changelogen --release && npm publish && git push --follow-tags"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"repository": {
"url": "git://github.com:mailtarget/mailtarget-nodejs-sdk.git"
},
"contributors": [
{
"name": "Rizky Novando Priyadi",
"email": "rizkynovando@gmail.com",
"url": "https://gitlab.com/novando"
}
],
"license": "GPLv3",
"devDependencies": {
"@types/node": "^20.11.28",
"changelogen": "^0.5.5",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"dependencies": {
"axios": "^1.6.8"
}
}