UNPKG

json-schema-ref-parser

Version:

Parse, Resolve, and Dereference JSON Schema $ref pointers

92 lines 2.88 kB
{ "name": "json-schema-ref-parser", "version": "6.1.0", "description": "Parse, Resolve, and Dereference JSON Schema $ref pointers", "keywords": [ "json", "schema", "jsonschema", "json-schema", "json-pointer", "$ref", "dereference", "resolve" ], "author": { "name": "James Messinger", "url": "https://jamesmessinger.com" }, "contributors": [ { "name": "Boris Cherny", "email": "boris@performancejs.com" } ], "homepage": "https://apidevtools.org/json-schema-ref-parser/", "repository": { "type": "git", "url": "https://github.com/APIDevTools/json-schema-ref-parser.git" }, "license": "MIT", "main": "lib/index.js", "typings": "lib/index.d.ts", "browser": { "fs": false }, "files": [ "dist/ref-parser.js", "dist/ref-parser.js.map", "dist/ref-parser.min.js", "dist/ref-parser.min.js.map", "lib" ], "scripts": { "lint": "eslint lib test/fixtures test/specs", "build": "simplifyify lib/index.js --outfile dist/ref-parser.js --standalone \\$RefParser --bundle --debug --minify", "watch": "npm run build -- --watch", "test": "npm run test:node && npm run test:browser && npm run test:typescript && npm run lint", "test:node": "mocha", "test:browser": "npm run build && karma start --single-run", "test:typescript": "tsc --noEmit --strict --lib esnext test/specs/typescript-definition.spec.ts", "coverage": "npm run coverage:node && npm run coverage:browser", "coverage:node": "nyc --reporter=text --reporter=lcov --report-dir coverage/node mocha", "coverage:browser": "npm run build -- --coverage && npm run test:browser -- --coverage", "upgrade": "npm-check -u", "bump": "bump --prompt --grep dist/* --tag --push --all", "release": "npm run upgrade && npm test && npm run bump", "start": "http-server -c-1 -o http://localhost:8080/test/" }, "devDependencies": { "@types/json-schema": "^7.0.1", "@types/node": "^11.9.4", "chai": "^4.2.0", "coveralls": "^3.0.2", "eslint": "^5.12.0", "eslint-config-modular": "^7.0.0", "http-server": "^0.11.1", "karma": "^4.0.0", "karma-chai": "^0.1.0", "karma-chrome-launcher": "^2.2.0", "karma-cli": "^2.0.0", "karma-coverage": "^1.1.2", "karma-edge-launcher": "^0.4.2", "karma-firefox-launcher": "^1.1.0", "karma-host-environment": "^1.1.7", "karma-ie-launcher": "^1.0.0", "karma-mocha": "^1.3.0", "karma-safari-launcher": "^1.0.0", "karma-sauce-launcher": "^2.0.2", "karma-verbose-reporter": "0.0.6", "mocha": "^6.0.0", "npm-check": "^5.9.0", "nyc": "^13.1.0", "simplifyify": "^7.0.1", "typescript": "^3.2.2", "version-bump-prompt": "^4.2.2" }, "dependencies": { "call-me-maybe": "^1.0.1", "js-yaml": "^3.12.1", "ono": "^4.0.11" } }