smartarray/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2021-06-29 18:41:15 +00:00
{
2023-07-10 00:42:11 +00:00
"name": "@push.rocks/smartarray",
2024-04-26 13:36:26 +00:00
"version": "1.0.7",
2021-06-29 18:41:15 +00:00
"private": false,
2024-04-26 13:36:25 +00:00
"description": "A library providing asynchronous operations like filter, map, and deduplication for arrays in TypeScript.",
2021-06-29 18:41:15 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2023-08-02 12:39:58 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2021-06-29 18:41:15 +00:00
},
"devDependencies": {
2024-04-26 12:05:48 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2023-08-02 12:39:58 +00:00
"@push.rocks/tapbundle": "^5.0.12",
2023-08-02 18:55:22 +00:00
"@types/node": "^20.4.6"
2021-06-29 18:41:15 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2023-08-02 12:39:58 +00:00
],
2024-04-14 15:20:59 +00:00
"type": "module",
"keywords": [
2024-04-26 13:36:25 +00:00
"asynchronous array operations",
"typescript library",
"array filtering",
"array mapping",
"array deduplication",
"async/await",
2024-04-14 15:20:59 +00:00
"npm package",
2024-04-26 13:36:25 +00:00
"modern JavaScript development",
2024-04-14 15:20:59 +00:00
"open source"
]
2024-04-26 13:36:26 +00:00
}