-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 961 Bytes
/
package.json
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
{
"name": "updated-obj-diff",
"version": "1.0.0",
"description": "A small library that returns the difference between two JavaScript objects, including nested objects, that handles values of all data types.",
"main": "dist/updated-obj-diff.js",
"scripts": {
"test": "jest",
"prettier": "./node_modules/.bin/prettier . --write",
"prepare": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyst/updated-obj-diff.git"
},
"keywords": [
"updated",
"object",
"obj",
"diff",
"difference",
"deep",
"nested"
],
"author": "Lyst",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyst/updated-obj-diff/issues"
},
"homepage": "https://github.com/lyst/updated-obj-diff#readme",
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"jest": "^26.6.3",
"prettier": "^2.2.1",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
}
}