smartobject/package.json

57 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2020-07-24 11:37:11 +00:00
{
2023-07-10 08:17:03 +00:00
"name": "@push.rocks/smartobject",
2023-07-12 17:59:28 +00:00
"version": "1.0.12",
2020-07-24 11:37:11 +00:00
"private": false,
2024-04-14 16:05:04 +00:00
"description": "A library to simplify and enhance object manipulation and traversal.",
2020-07-24 11:37:11 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2020-07-24 11:52:06 +00:00
"build": "(tsbuild --web)",
2023-07-12 17:40:41 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2020-07-24 11:37:11 +00:00
},
"devDependencies": {
2023-07-12 17:40:41 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@push.rocks/tapbundle": "^5.0.8",
2023-07-12 17:59:28 +00:00
"@types/node": "^20.4.1"
2020-07-24 11:37:11 +00:00
},
2021-03-22 02:33:01 +00:00
"dependencies": {
2022-03-06 10:09:53 +00:00
"fast-deep-equal": "^3.1.3",
2023-07-12 17:59:28 +00:00
"minimatch": "^9.0.3"
2021-03-22 02:33:01 +00:00
},
2020-07-24 11:37:11 +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-07-12 17:40:41 +00:00
],
2024-04-14 16:05:04 +00:00
"type": "module",
"keywords": [
"object manipulation",
"deep traversal",
"typescript",
"object comparison",
"property matching",
"dynamic property access",
"object flattening"
2024-05-29 12:15:08 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartobject",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartobject.git"
}
2024-04-14 16:05:04 +00:00
}