-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.5 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "schema-fun",
"version": "1.0.0-alpha.5",
"description": "JSON schema tools",
"author": {
"name": "Jeremy Stone",
"email": "stoneje@msn.com"
},
"bugs": {
"url": "https://github.com/jstone-dev/schematools/issues"
},
"dependencies": {
"graphlib": "^2.1.8",
"lodash": "^4.17.21",
"path": "^0.12.7",
"querystring": "^0.2.1",
"slash": "^5.1.0",
"uri-js": "^4.4.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.2",
"prettier": "3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"jest": {
"transform": {}
},
"keywords": [
"JSON",
"schema",
"schema references",
"schema registry",
"semistructured"
],
"homepage": "https://github.com/jstone-dev/schematools#readme",
"license": "ISC",
"engines": {
"node": ">= 20.0.0"
},
"exports": {
".": "./dist/index.js",
"./browser": "./dist/browser.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jstone-dev/schematools.git"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"type": "module",
"typings": "dist/index.d.ts"
}