js-pointer
Version:
Tiny, spec compliant JSON Pointer RFC 6901 implementation.
33 lines (32 loc) • 763 B
JSON
{
"name": "js-pointer",
"version": "4.0.1",
"description": "Tiny, spec compliant JSON Pointer RFC 6901 implementation.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint 'lib/**' 'test/**'",
"test": "node --test test/*",
"coverage": "node --test --experimental-test-coverage test/*",
"watch": "node --test --watch .",
"ci": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/toboid/js-pointer.git"
},
"keywords": [
"RFC6901",
"json-pointer",
"json-reference",
"json-schema"
],
"engines": {
"node": ">= 18"
},
"author": "Toboid",
"license": "MIT",
"devDependencies": {
"eslint": "^9.32.0",
"eslint-config-toboid": "^2.0.0"
}
}