-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (45 loc) · 1.24 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
{
"contributors": [
"Chris Peyton <chris.peyton@bayer.com",
"Jared Edler <jared.edler@bayer.com"
],
"name": "json-diff-audit",
"version": "1.0.0",
"description": "Detect changes and generate audit events for a series of JSON objects",
"main": "index.js",
"scripts": {
"test": "json_diff_audit__debug=true jest",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretest": "npm run lint",
"format": "prettier --config .prettierrc.json --write './**/@(*.js|*.ts|*.json)'"
},
"repository": {
"type": "git",
"url": "https://github.com/Bayer-Group/json-diff-audit.git"
},
"keywords": [
"json-diff-audit",
"audit",
"json-diff"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Bayer-Group/json-diff-audit/issues"
},
"homepage": "https://github.com/Bayer-Group/json-diff-audit#readme",
"dependencies": {
"json-diff": "^1.0.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.6",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5"
}
}