smarthash/package.json

63 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2016-08-15 02:43:26 +00:00
{
2023-07-10 00:56:14 +00:00
"name": "@push.rocks/smarthash",
2023-09-22 11:55:56 +00:00
"version": "3.0.4",
"private": false,
2024-04-14 15:40:33 +00:00
"description": "Provides simplified access to Node.js hash functions, including SHA256 and MD5, with support for strings, streams, and files.",
2020-10-05 15:07:28 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-08-15 02:43:26 +00:00
"scripts": {
2021-03-01 01:26:55 +00:00
"test": "(tstest test/ --web)",
2023-09-22 11:55:56 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-06-26 09:34:09 +00:00
"buildDocs": "tsdoc"
2016-08-15 02:43:26 +00:00
},
"keywords": [
2024-04-14 15:40:33 +00:00
"crypto",
"hashing",
"SHA256",
"MD5",
"security",
"node.js",
"stream hashing",
"file hashing",
"synchronous hashing",
"asynchronous hashing",
"data integrity",
"typescript"
2016-08-15 02:43:26 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"devDependencies": {
2023-09-22 11:51:11 +00:00
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.81",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.6.3"
2016-08-15 03:55:09 +00:00
},
"dependencies": {
2023-09-22 11:51:11 +00:00
"@push.rocks/smartjson": "^5.0.10",
"@push.rocks/smartpromise": "^4.0.3",
"@types/through2": "^2.0.39",
2020-10-05 15:07:28 +00:00
"through2": "^4.0.2"
2019-07-04 14:56:37 +00:00
},
"files": [
2019-11-21 14:20:57 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-10-05 15:07:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-21 14:20:57 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-04 14:56:37 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-05 15:07:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-06-26 09:34:09 +00:00
],
2024-05-29 12:13:30 +00:00
"type": "module",
"homepage": "https://code.foss.global/push.rocks/smarthash",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smarthash.git"
}
2024-04-14 15:40:33 +00:00
}