This repository was archived by the owner on Jun 7, 2024. It is now read-only.
forked from hyperjump-io/json-schema-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
{
"name": "@hyperjump/json-schema-core",
"version": "0.16.0",
"description": "A framework for building JSON Schema tools",
"main": "lib/index.js",
"browser": {
"./lib/fetch.js": "./lib/fetch.browser.js"
},
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "mocha 'lib/**/*.spec.js'",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build"
},
"repository": "github:hyperjump-io/json-schema-core",
"keywords": [
"JSON Schema",
"vocabulary",
"$ref",
"$recursiveRef",
"$recursiveAnchor",
"$id"
],
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.20.2",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"rollup": "^2.12.1",
"rollup-plugin-terser": "^5.3.0"
},
"dependencies": {
"@hyperjump/json-pointer": "^0.8.0",
"@hyperjump/pact": "^0.1.2",
"content-type": "^1.0.4",
"make-fetch-happen": "^8.0.7",
"pubsub-js": "^1.8.0",
"url-resolve-browser": "^1.2.0"
}
}