forked from stoplightio/json-schema-ref-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.95 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@stoplight/json-schema-ref-parser",
"version": "10.0.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://apitools.dev/json-schema-ref-parser/",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/json-schema-ref-parser.git"
},
"license": "MIT",
"main": "lib/index.node.js",
"typings": "lib/index.d.ts",
"browser": {
"./lib/index.node.js": "./lib/index.browser.js",
"./lib/environment/node.js": "./lib/environment/browser.js",
"fs": false
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"browser": "./lib/index.browser.js",
"node": "./lib/index.node.js"
},
"./lib/util/url": "./lib/util/url.js",
"./lib/parsers/json": "./lib/parsers/json.js",
"./lib/parsers/yaml": "./lib/parsers/yaml.js",
"./lib/bundle/stoplight/defaults": "./lib/bundle/stoplight/defaults.js"
},
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage",
"lint": "eslint lib test/fixtures test/specs",
"lint:fix": "eslint --fix 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.12.1",
"@jsdevtools/eslint-config": "^1.0.7",
"@jsdevtools/host-environment": "^2.1.2",
"@jsdevtools/karma-config": "^3.1.7",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/chai-spies": "^1.0.3",
"@types/json-schema": "^7.0.6",
"@types/node": "^14.14.21",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"chai-subset": "^1.6.0",
"chokidar": "^3.5.1",
"eslint": "^7.18.0",
"fetch-mock": "^9.11.0",
"karma": "^5.0.2",
"karma-cli": "^2.0.0",
"mocha": "^8.2.1",
"nock": "^12.0.3",
"node-fetch": "^2.7.0",
"npm-check": "^5.9.0",
"nyc": "^15.0.1",
"shx": "^0.3.2",
"typescript": "^4.0.5"
},
"dependencies": {
"@jsdevtools/ono": "^7.1.3",
"@stoplight/path": "^1.3.2",
"@stoplight/yaml": "^4.0.2",
"call-me-maybe": "^1.0.1",
"url": "^0.11.3"
}
}