forked from benjamine/jsondiffpatch
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.15 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.15 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
{
"name": "diffpatch",
"version": "0.6.0",
"author": "Benjamin Eidelman <beneidel@gmail.com>",
"description": "Diff and patch Javascript objects",
"contributors": [
"Benjamin Eidelman <beneidel@gmail.com>",
"bpmn.io Contributors <https://bpmn.io>"
],
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"diffpatch": "./bin/diffpatch"
},
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha",
"watch": "npm test -- --watch",
"prepublishOnly": "npm run all"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/diffpatch.git"
},
"keywords": [
"json",
"diff",
"patch"
],
"dependencies": {
"picocolors": "^1.0.1"
},
"devDependencies": {
"chai": "^5.1.1",
"diff-match-patch": "^1.0.5",
"eslint": "^8.57.0",
"eslint-plugin-bpmn-io": "^1.0.1",
"eslint-plugin-import": "^2.8.0",
"esm": "^3.0.25",
"mocha": "^10.7.0",
"npm-run-all2": "^6.2.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"bin"
],
"license": "MIT",
"engines": {
"node": ">=8"
}
}