UNPKG

2.73 kBJSONView Raw
1{
2 "name": "json-schema-ref-parser",
3 "version": "6.0.0",
4 "description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
5 "keywords": [
6 "json",
7 "schema",
8 "jsonschema",
9 "json-schema",
10 "json-pointer",
11 "$ref",
12 "dereference",
13 "resolve"
14 ],
15 "author": {
16 "name": "James Messinger",
17 "url": "https://jamesmessinger.com"
18 },
19 "contributors": [
20 {
21 "name": "Boris Cherny",
22 "email": "boris@performancejs.com"
23 }
24 ],
25 "homepage": "https://github.com/APIDevTools/json-schema-ref-parser",
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/APIDevTools/json-schema-ref-parser.git"
29 },
30 "license": "MIT",
31 "main": "lib/index.js",
32 "typings": "lib/index.d.ts",
33 "browser": {
34 "fs": false
35 },
36 "files": [
37 "dist/ref-parser.js",
38 "dist/ref-parser.js.map",
39 "dist/ref-parser.min.js",
40 "dist/ref-parser.min.js.map",
41 "lib"
42 ],
43 "scripts": {
44 "lint": "eslint lib test/fixtures test/specs --fix",
45 "build": "simplifyify lib/index.js --outfile dist/ref-parser.js --standalone \\$RefParser --bundle --debug --minify",
46 "watch": "npm run build -- --watch",
47 "test": "npm run test:node && npm run test:browser && npm run lint",
48 "test:node": "mocha",
49 "test:browser": "karma start --single-run",
50 "coverage": "npm run coverage:node && npm run coverage:browser",
51 "coverage:node": "nyc --reporter=text --reporter=lcov --report-dir coverage/node mocha",
52 "coverage:browser": "npm run build -- --coverage && npm run test:browser -- --coverage",
53 "upgrade": "npm-check -u",
54 "bump": "bump --prompt --grep dist/* --tag --push --all",
55 "release": "npm run upgrade && npm test && npm run bump && npm publish",
56 "start": "http-server -o -c-1"
57 },
58 "devDependencies": {
59 "@types/json-schema": "^7.0.1",
60 "@types/node": "^10.11.4",
61 "chai": "^4.2.0",
62 "codacy-coverage": "^3.1.0",
63 "coveralls": "^3.0.2",
64 "eslint": "^5.6.1",
65 "eslint-config-modular": "^4.2.2",
66 "http-server": "^0.11.1",
67 "karma": "^3.0.0",
68 "karma-chai": "^0.1.0",
69 "karma-chrome-launcher": "^2.2.0",
70 "karma-cli": "^1.0.1",
71 "karma-coverage": "^1.1.2",
72 "karma-edge-launcher": "^0.4.2",
73 "karma-firefox-launcher": "^1.1.0",
74 "karma-host-environment": "^1.1.6",
75 "karma-ie-launcher": "^1.0.0",
76 "karma-mocha": "^1.3.0",
77 "karma-safari-launcher": "^1.0.0",
78 "karma-sauce-launcher": "^1.2.0",
79 "karma-verbose-reporter": "0.0.6",
80 "mocha": "^5.2.0",
81 "npm-check": "^5.9.0",
82 "nyc": "^13.0.1",
83 "simplifyify": "^6.0.1",
84 "version-bump-prompt": "^4.2.1"
85 },
86 "dependencies": {
87 "call-me-maybe": "^1.0.1",
88 "js-yaml": "^3.12.0",
89 "ono": "^4.0.10"
90 }
91}
\No newline at end of file