-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.83 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
67
68
69
70
71
72
73
{
"author": "Jed Luhmann <github@jedluhmann.com>",
"contributors": [
"Andrey Tarantsov <andreyvit@me.com>",
"Gavriel Fleischer <flocsy@gmail.com>",
"Eric Woudenberg <eaw@woudy.org>"
],
"name": "@jedluhmann/json-diff",
"description": "JSON diff, forked from https://github.com/andreyvit/json-diff",
"version": "1.0.8",
"type": "module",
"homepage": "https://github.com/jedluhmann/json-diff",
"license": "MIT",
"repository": {
"url": "git+ssh://git@github.com/jedluhmann/json-diff.git"
},
"main": "lib/JsonDiff.js",
"bin": {
"json-diff": "bin/json-diff.js"
},
"files": [
"bin",
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "mocha test/**/*.spec.js",
"test:coverage": "c8 mocha && open coverage/index.html",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"release": "bun release.ts",
"prepare": "husky"
},
"dependencies": {
"@ewoudenberg/difflib": "0.1.0",
"colors": "^1.4.0",
"dreamopt": "~0.8.0",
"jq-wasm": "^3.0.0-jq-1.8.2"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.4.2",
"c8": "^12.0.0",
"chai": "^6.2.2",
"coffeescript": "^2.6.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jscoverage": "^0.6.0",
"lint-staged": "^17.5.1",
"mocha": "^11.8.0",
"prettier": "^3.9.6"
},
"engines": {
"node": "*"
},
"lint-staged": {
"**/*.(js|ts|tsx|jsx)": [
"bunx prettier --write",
"bunx eslint --fix"
],
"**/*.(md|json|yaml|html)": [
"bunx prettier --write"
]
}
}