@jsonquerylang/jsonquery
Version:
A small, flexible, and expandable JSON query language
66 lines (65 loc) • 1.6 kB
JSON
{
"name": "@jsonquerylang/jsonquery",
"version": "4.1.1",
"description": "A small, flexible, and expandable JSON query language",
"keywords": [
"json",
"query",
"language",
"small",
"lightweight",
"flexible",
"expandable",
"simple"
],
"author": "Jos de Jong",
"type": "module",
"sideeffects": false,
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/jsonquerylang/jsonquery.git"
},
"bin": {
"jsonquery": "./bin/cli.js"
},
"module": "./lib/jsonquery.js",
"types": "./lib/jsonquery.d.ts",
"exports": {
".": {
"import": "./lib/jsonquery.js",
"types": "./lib/jsonquery.d.ts"
}
},
"files": [
"lib",
"bin",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "vitest src",
"test-ci": "vitest run src",
"coverage": "vitest run src --coverage",
"build": "npm-run-all build:**",
"build:esm": "vite build",
"build:types": "tsc --project tsconfig-types.json",
"build:validate": "vitest run test-lib",
"lint": "biome check",
"format": "biome check --write",
"format:readme": "prettier README.md --write --ignore-path notneeded",
"build-and-test": "npm-run-all test-ci lint build",
"prepublishOnly": "npm run build-and-test",
"release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "2.1.4",
"ajv": "8.17.1",
"npm-run-all": "4.1.5",
"semantic-release": "24.2.0",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.4"
}
}