This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "@hyperjump/json-schema-core",
"version": "0.28.4",
"description": "A framework for building JSON Schema tools",
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"browser": {
"./lib/fetch.js": "./lib/fetch.browser.js"
},
"scripts": {
"clean": "xargs -a .gitignore rm -rf",
"lint": "eslint lib",
"test": "mocha --require ts-node/register 'lib/**/*.spec.ts'",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"require('fs').rmSync('dist', { recursive: true })\""
},
"repository": "github:hyperjump-io/json-schema-core",
"keywords": [
"JSON Schema",
"vocabulary",
"$ref",
"$recursiveRef",
"$recursiveAnchor",
"$id"
],
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"devDependencies": {
"@rollup/plugin-commonjs": "*",
"@rollup/plugin-node-resolve": "*",
"@types/chai": "*",
"@types/mocha": "*",
"@types/nock": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"chai": "*",
"eslint": "*",
"eslint-import-resolver-node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"mocha": "*",
"nock": "*",
"rimraf": "*",
"rollup": "*",
"rollup-plugin-terser": "*",
"ts-node": "*",
"typescript": "*",
"yaml": "*"
},
"dependencies": {
"@hyperjump/json-pointer": "^0.9.4",
"@hyperjump/pact": "^0.2.3",
"content-type": "^1.0.4",
"node-fetch": "^2.6.5",
"pubsub-js": "^1.9.4",
"uri-js": "^4.4.1"
}
}