smartarray/package.json

53 lines
1.1 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",
2023-08-02 18:55:23 +00:00
"version": "1.0.5",
2021-06-29 18:41:15 +00:00
"private": false,
"description": "a package exposing async manipulation for arrays",
"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": {
2023-08-02 12:39:58 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@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": [
"async",
"arrays",
"manipulation",
"filter",
"deduplicate",
"typescript",
"nodejs",
"async programming",
"development",
"npm package",
"code quality",
"open source"
]
}