km-traversal
Version:
This utility provides powerful object traversal capabilities with pattern matching and transformation features.
71 lines (70 loc) • 1.9 kB
JSON
{
"name": "km-traversal",
"version": "1.1.8",
"description": "This utility provides powerful object traversal capabilities with pattern matching and transformation features.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": {
"url": "https://github.com/komeilm76/km-traversal.git"
},
"license": "MIT",
"keywords": [
"traversal",
"typeScript",
"query",
"nested",
"deep",
"data",
"pattern",
"path",
"json",
"jsonPath",
"syntax",
"filtering",
"conditional",
"modifications"
],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"watch:build": "tsc -p tsconfig.json -w",
"reset-hard": "git clean -dfx && git reset --hard && npm i",
"prepare-release": "run-s reset-hard",
"dev": "npm run dev:nodemon",
"dev:nodemon": "cross-env NODE_ENV=development nodemon",
"dev:ts-node-dev": "cross-env NODE_ENV=development ts-node-dev --respawn --transpile-only ./src/index.ts",
"make-release": "npm run fix && npm run build && release-it"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@types/node": "^22.5.5",
"cross-env": "^7.0.3",
"jsonrepair": "^3.13.0"
},
"devDependencies": {
"nodemon": "3.1.6",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"prettier": "^2.1.1",
"release-it": "^17.6.0",
"ts-node": "10.6.0",
"ts-node-dev": "2.0.0",
"typescript": "4.9.5"
},
"files": [
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"config": {}
}