smartmail/package.json

47 lines
1.1 KiB
JSON
Raw Normal View History

2018-09-29 21:57:25 +00:00
{
2018-09-29 22:20:37 +00:00
"name": "@pushrocks/smartmail",
2023-06-13 21:23:12 +00:00
"version": "1.0.23",
2018-09-29 21:57:25 +00:00
"private": false,
"description": "a unified format for representing and dealing with mails",
2020-06-18 16:19:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 09:38:07 +00:00
"type": "module",
2018-09-29 21:57:25 +00:00
"author": "Lossless GmbH",
"license": "UNLICENSED",
"scripts": {
"test": "(tstest test/)",
"format": "(gitzone format)",
2022-08-07 09:38:07 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2018-09-29 21:57:25 +00:00
},
"devDependencies": {
2023-06-13 21:23:11 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
2022-08-07 09:38:07 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-06-13 21:23:11 +00:00
"@types/node": "^20.3.0"
2018-09-29 21:57:25 +00:00
},
2019-10-26 21:45:35 +00:00
"dependencies": {
2023-06-13 21:23:11 +00:00
"@pushrocks/smartdns": "^5.0.4",
"@pushrocks/smartfile": "^10.0.7",
2022-08-07 16:09:19 +00:00
"@pushrocks/smartmustache": "^3.0.2",
2022-08-07 16:49:18 +00:00
"@pushrocks/smartpath": "^5.0.5",
2023-06-13 21:23:11 +00:00
"@pushrocks/smartrequest": "^2.0.15"
2019-10-26 21:45:35 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-18 16:24:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-26 21:45:35 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2022-08-07 09:38:07 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-10-26 21:45:35 +00:00
]
2022-08-07 09:41:06 +00:00
}