78 lines
2.2 KiB
JSON
78 lines
2.2 KiB
JSON
|
{
|
||
|
"name": "@apidevtools/json-schema-ref-parser",
|
||
|
"version": "9.0.6",
|
||
|
"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://apitools.dev/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": [
|
||
|
"lib"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"clean": "shx rm -rf .nyc_output coverage",
|
||
|
"lint": "eslint lib test/fixtures test/specs",
|
||
|
"test": "npm run test:node && npm run test:typescript && npm run test:browser && npm run lint",
|
||
|
"test:node": "mocha",
|
||
|
"test:browser": "karma start --single-run",
|
||
|
"test:typescript": "tsc --noEmit --strict --lib esnext,dom test/specs/typescript-definition.spec.ts",
|
||
|
"coverage": "npm run coverage:node && npm run coverage:browser",
|
||
|
"coverage:node": "nyc node_modules/mocha/bin/mocha",
|
||
|
"coverage:browser": "npm run test:browser -- --coverage",
|
||
|
"upgrade": "npm-check -u && npm audit fix",
|
||
|
"bump": "bump --tag --push --all",
|
||
|
"release": "npm run upgrade && npm run clean && npm test && npm run bump"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/polyfill": "^7.10.4",
|
||
|
"@jsdevtools/eslint-config": "^1.0.7",
|
||
|
"@jsdevtools/host-environment": "^2.0.4",
|
||
|
"@jsdevtools/karma-config": "^3.1.7",
|
||
|
"@jsdevtools/version-bump-prompt": "^6.0.6",
|
||
|
"@types/json-schema": "^7.0.4",
|
||
|
"@types/node": "^14.0.25",
|
||
|
"chai": "^4.2.0",
|
||
|
"chai-subset": "^1.6.0",
|
||
|
"eslint": "^7.5.0",
|
||
|
"karma": "^5.0.2",
|
||
|
"karma-cli": "^2.0.0",
|
||
|
"mocha": "^8.0.1",
|
||
|
"npm-check": "^5.9.0",
|
||
|
"nyc": "^15.0.1",
|
||
|
"shx": "^0.3.2",
|
||
|
"typescript": "^3.9.7"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@jsdevtools/ono": "^7.1.3",
|
||
|
"call-me-maybe": "^1.0.1",
|
||
|
"js-yaml": "^3.13.1"
|
||
|
}
|
||
|
}
|