UNPKG

2.43 kBJSONView Raw
1{
2 "name": "json-schema-ref-parser",
3 "version": "5.0.3",
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": "http://bigstickcarpet.com"
18 },
19 "contributors": [
20 {
21 "name": "Boris Cherny",
22 "email": "boris@performancejs.com"
23 }
24 ],
25 "license": "MIT",
26 "homepage": "https://github.com/BigstickCarpet/json-schema-ref-parser",
27 "main": "lib/index.js",
28 "typings": "lib/index.d.ts",
29 "scripts": {
30 "lint": "eslint lib test --fix",
31 "build": "npm run lint && npm run browserify",
32 "browserify": "simplifyify lib/index.js --outfile dist/ref-parser.js --standalone \\$RefParser --bundle --debug --minify",
33 "watch": "npm run browserify -- --watch",
34 "mocha": "mocha",
35 "istanbul": "istanbul cover _mocha --dir coverage/node",
36 "karma": "karma start --single-run",
37 "test": "npm run browserify -- --test && npm run istanbul && npm run karma",
38 "upgrade": "npm-check -u",
39 "bump": "bump --prompt --grep dist/* --tag --push --all",
40 "release": "npm run upgrade && npm test && npm run bump && npm publish",
41 "start": "npm run watch & http-server -o -c-1"
42 },
43 "browser": {
44 "fs": false
45 },
46 "repository": {
47 "type": "git",
48 "url": "https://github.com/BigstickCarpet/json-schema-ref-parser.git"
49 },
50 "devDependencies": {
51 "@types/json-schema": "^6.0.1",
52 "@types/node": "^9.6.2",
53 "bower": "^1.8.4",
54 "chai": "^4.1.2",
55 "codacy-coverage": "^2.1.1",
56 "coveralls": "^3.0.0",
57 "eslint": "^4.19.1",
58 "eslint-config-modular": "^4.1.2",
59 "http-server": "^0.11.1",
60 "istanbul": "^0.4.5",
61 "karma": "^2.0.0",
62 "karma-chrome-launcher": "^2.2.0",
63 "karma-cli": "^1.0.1",
64 "karma-coverage": "^1.1.1",
65 "karma-edge-launcher": "^0.4.2",
66 "karma-firefox-launcher": "^1.1.0",
67 "karma-ie-launcher": "^1.0.0",
68 "karma-mocha": "^1.3.0",
69 "karma-safari-launcher": "^1.0.0",
70 "karma-sauce-launcher": "^1.2.0",
71 "karma-verbose-reporter": "0.0.6",
72 "mocha": "^5.0.5",
73 "npm-check": "^5.6.0",
74 "simplifyify": "^4.0.2",
75 "version-bump-prompt": "^4.0.0"
76 },
77 "dependencies": {
78 "call-me-maybe": "^1.0.1",
79 "debug": "^3.1.0",
80 "js-yaml": "^3.11.0",
81 "ono": "^4.0.3"
82 }
83}
\No newline at end of file