forked from atlassian/better-ajv-errors
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.74 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
{
"name": "@readme/better-ajv-errors",
"version": "2.1.2",
"description": "JSON Schema validation for Human",
"license": "Apache-2.0",
"author": "Rifat Nabi <[email protected]>",
"main": "lib/index.js",
"typings": "typings.d.ts",
"files": [
"lib",
"index.js",
"typings.d.ts"
],
"engines": {
"node": ">=18"
},
"keywords": [
"json-schema",
"ajv",
"ajv-errors"
],
"repository": {
"type": "git",
"url": "git://github.com/readmeio/better-ajv-errors.git"
},
"bugs": {
"url": "https://github.com/readmeio/better-ajv-errors/issues"
},
"scripts": {
"build": "babel src -d lib",
"lint": "npm run lint:js && npm run prettier",
"lint:js": "eslint . --ext .js,.ts --ignore-path .gitignore",
"prebuild": "rm -rf lib",
"prepack": "npm run build",
"prerelease": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --check .",
"prettier:write": "prettier --check --write .",
"test": "vitest run --coverage"
},
"dependencies": {
"@babel/code-frame": "^7.22.5",
"@babel/runtime": "^7.22.5",
"@humanwhocodes/momoa": "^2.0.3",
"jsonpointer": "^5.0.0",
"leven": "^3.1.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@apidevtools/openapi-schemas": "^2.1.0",
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.7",
"@readme/eslint-config": "^14.1.2",
"@vitest/coverage-v8": "^3.0.4",
"ajv": "^8.17.1",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.44.0",
"prettier": "^3.4.2",
"vitest": "^3.0.4"
},
"peerDependencies": {
"ajv": "4.11.8 - 8"
},
"prettier": "@readme/eslint-config/prettier"
}