mailgun/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2017-02-08 22:25:01 +00:00
{
2019-10-23 17:27:42 +00:00
"name": "@mojoio/mailgun",
2022-08-07 17:27:43 +00:00
"version": "2.0.1",
2019-10-23 17:27:42 +00:00
"private": false,
"description": "an api abstraction package for mailgun",
2020-06-18 22:00:00 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 14:31:56 +00:00
"type": "module",
2017-02-08 22:25:01 +00:00
"author": "Lossless GmbH",
"license": "MIT",
2019-10-23 17:27:42 +00:00
"scripts": {
"test": "(tstest test/)",
2022-08-07 17:27:42 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-08-07 17:07:01 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2019-10-23 17:27:42 +00:00
},
"devDependencies": {
2022-08-07 14:31:56 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.4"
2017-02-08 22:25:01 +00:00
},
2019-10-23 18:00:04 +00:00
"dependencies": {
2022-08-07 14:31:56 +00:00
"@pushrocks/smartfile": "^10.0.4",
2022-08-07 17:07:01 +00:00
"@pushrocks/smartmail": "^1.0.22",
2022-08-07 14:31:56 +00:00
"@pushrocks/smartrequest": "^2.0.10",
2022-08-07 17:07:01 +00:00
"@pushrocks/smartsmtp": "^3.0.3",
2022-08-07 14:31:56 +00:00
"@pushrocks/smartstring": "^4.0.2"
2019-10-23 18:00:04 +00:00
},
2019-10-23 17:27:42 +00:00
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-18 22:00:00 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-23 17:27:42 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-08-13 01:37:26 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-10-23 17:27:42 +00:00
]
2020-06-18 22:00:00 +00:00
}