-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "@typhonjs-utils/better-ajv-errors",
"description": "Provides parsing of `ajv` errors output to format error messages and create code frames.",
"version": "0.2.0",
"author": "Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)",
"type": "module",
"main": "./src/BetterErrors.js",
"module": "./src/BetterErrors.js",
"contributors": [
"Michael Leahy <support@typhonjs.io> (https://github.com/typhonrt)"
],
"dependencies": {
"@babel/code-frame": "^7.0.0",
"json-source-map": "^0.6.0",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@typhonjs-build-test/node": "^0.0.2",
"ajv": "^8.0.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.0.0",
"dir-compare": "^4.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/src"
],
"homepage": "https://github.com/typhonjs-node-utils/better-ajv-errors",
"keywords": [
"typhonjs",
"utils",
"ajv",
"better",
"errors",
"code frame"
],
"license": "MPL-2.0",
"bugs": "https://github.com/typhonjs-node-utils/better-ajv-errors/issues",
"repository": "github:typhonjs-node-utils/better-ajv-errors",
"scripts": {
"eslint": "eslint .",
"posttest": "npm run eslint",
"prepublishOnly": "npm run test",
"test": "c8 --reporter=lcov --reporter=text-summary mocha -colors \"test/src/**/*.test.js\""
}
}