-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 783 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 783 Bytes
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
{
"name": "deep-diff-patcher",
"version": "1.0.6",
"description": "Compare the differences between two objects and apply the patch",
"repository": {
"type": "git",
"url": "git://github.com/philios33/diff-patcher.git"
},
"files": ["dist/*", "src/*"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -Rf ./dist && tsc",
"prepublishOnly": "npm run test && npm run build"
},
"author": {
"name": "philios33",
"email": "phil@code67.com"
},
"license": "MIT",
"keywords": ["compare", "diff", "object changes", "patching"],
"devDependencies": {
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}