smarthash/package.json

54 lines
1.1 KiB
JSON
Raw 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:51:12 +00:00
"version": "3.0.3",
"private": false,
2019-01-30 01:42:19 +00:00
"description": "simplified access to node hash functions",
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": [
2019-01-30 01:42:19 +00:00
"pushrocks",
"typescript",
2016-08-15 02:43:26 +00:00
"hash",
"node",
2016-08-16 01:45:15 +00:00
"sha256",
"stream",
"filehash"
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
],
"type": "module"
2023-09-22 11:51:12 +00:00
}