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 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "@hyperjump/json-schema-bundle",
"version": "0.4.0",
"description": "A tool for bundling JSON Schema documents",
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"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"
},
"repository": "github:hyperjump-io/json-schema-bundle",
"keywords": [
"JSON Schema",
"json-schema",
"jsonschema",
"schema",
"bundle",
"bundler",
"$ref",
"external",
"reference",
"Compound Schema Document",
"embedded"
],
"author": "Jason Desrosiers <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jdesrosiers"
},
"dependencies": {
"@hyperjump/json-schema": "^0.23.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "*",
"@rollup/plugin-node-resolve": "*",
"@types/chai": "*",
"@types/mocha": "*",
"@types/uuid": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"chai": "*",
"eslint": "*",
"eslint-import-resolver-node": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"mocha": "*",
"rollup": "*",
"rollup-plugin-terser": "*",
"ts-node": "*",
"typescript": "*"
}
}