smartarray/package.json

56 lines
1.4 KiB
JSON
Raw Permalink 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-27 06:12:29 +00:00
"version": "1.0.8",
2021-06-29 18:41:15 +00:00
"private": false,
2024-04-27 06:12:29 +00:00
"description": "A TypeScript library for enhancing array manipulation with asynchronous operations such as mapping, filtering, and deduplication.",
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-27 06:12:29 +00:00
"TypeScript",
"asynchronous programming",
"array manipulation",
2024-04-26 13:36:25 +00:00
"array mapping",
2024-04-27 06:12:29 +00:00
"array filtering",
"deduplication",
2024-04-26 13:36:25 +00:00
"async/await",
2024-04-27 06:12:29 +00:00
"software development",
2024-04-14 15:20:59 +00:00
"npm package",
"open source"
2024-05-29 12:11:48 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartarray",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartarray.git"
}
}