UNPKG

jsonpath-tmf-query

Version:

This library aims to provide a simple wrapper around jsonpath, to ease the implementation of TMF630 JSONPath specification as outlined by the TM Forum [here](https://projects.tmforum.org/wiki/pages/viewpage.action?spaceKey=PUB&title=TMF630+REST+API+Design

82 lines (81 loc) 2.15 kB
{ "name": "jsonpath-tmf-query", "version": "1.2.1", "description": "This library aims to provide a simple wrapper around jsonpath, to ease the implementation of TMF630 JSONPath specification as outlined by the TM Forum [here](https://projects.tmforum.org/wiki/pages/viewpage.action?spaceKey=PUB&title=TMF630+REST+API+Design+Guidelines+v4.0.1)", "type": "module", "main": "./dist/JSONPathQuery.cjs", "module": "./dist/JSONPathQuery.mjs", "types": "./dist/JSONPathQuery.d.ts", "exports": { ".": { "require": "./dist/JSONPathQuery.cjs", "import": "./dist/JSONPathQuery.mjs", "types": "./dist/JSONPathQuery.d.ts" } }, "scripts": { "prepack": "unbuild", "build": "tsc", "test": "vitest run", "lint": "eslint src" }, "files": [ "dist/*" ], "author": "Nathan Babinall", "license": "MIT", "devDependencies": { "@eslint/js": "^9.1.1", "@semantic-release/git": "^10.0.1", "@types/lodash": "^4.14.202", "eslint": "^8.57.0", "eslint-plugin-import": "^2.29.1", "semantic-release": "^23.0.0", "source-map-support": "^0.5.20", "typescript": "^5.4.5", "typescript-eslint": "^7.7.0", "unbuild": "^2.0.0", "vitest": "^1.5.0" }, "dependencies": { "jsonpath-plus": "^10.0.4", "lodash": "^4.17.21" }, "repository": { "type": "git", "url": "git+https://github.com/NathanBabinall/jsonpath-tmf-query.git" }, "release": { "branches": [ "+([0-9])?(.{+([0-9]),x}).x", "main", "next", "next-major", { "name": "beta", "prerelease": true }, { "name": "alpha", "prerelease": true } ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/github", "@semantic-release/git" ] }, "keywords": [ "json", "jsonpath", "tmf", "tm forum" ], "bugs": { "url": "https://github.com/NathanBabinall/jsonpath-tmf-query/issues" }, "homepage": "https://github.com/NathanBabinall/jsonpath-tmf-query#readme" }