UNPKG

grumpy-odata-parser

Version:
63 lines 1.75 kB
{ "name": "grumpy-odata-parser", "version": "1.0.0", "description": "OData(V4.01) Parser", "main": "lib/index", "typings": "lib/index.d.ts", "engines": { "node": ">=14", "npm": ">=6" }, "repository": { "type": "git", "url": "https://github.com/nazar-kuzo/odata-v4-parser" }, "contributors": [ { "name": "Nazar Kuzo", "email": "nazar.kuzo@outlook.com", "url": "https://github.com/nazar-kuzo" }, { "name": "Theo Sun", "email": "theo.sun@outlook.com", "url": "https://github.com/Soontao" }, { "name": "JayStack Enterprises", "url": "http://jaystack.com" } ], "license": "MIT", "scripts": { "prebuild": "npm run lint", "build": "tsc", "lint": "eslint src/** --fix", "coverage": "npm test -- --coverage --no-cache", "typedoc": "typedoc --name \"OData v4 Filter Parser\" --excludeExternals --excludeNotExported --hideGenerator --excludeExternals --excludePrivate --out docs src", "test": "jest", "prepublishOnly": "npm run test && npm run build", "release": "npx standard-version --no-verify && git push --follow-tags origin main" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^14.18.40", "@typescript-eslint/eslint-plugin": "^5.56.0", "@typescript-eslint/parser": "^5.56.0", "eslint": "^7.32.0", "eslint-config-prettier": "^8.8.0", "jest": "^29.5.0", "prettier": "2.3.2", "ts-jest": "^29.0.5", "typescript": "^5.0.2" }, "dependencies": { "@newdash/newdash": "^5.21.4", "@odata/metadata": "^0.2.8" }, "keywords": [ "odata", "odata(v4)", "uri parser" ] }