-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 855 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
{
"name": "deep-merge-js",
"version": "1.0.6",
"description": "A plain javascript library for deep merging objects",
"keywords": [
"merge",
"deep",
"extend",
"copy",
"clone",
"recursive",
"deepmerge",
"deep-merge",
"deep-merge-js"
],
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smiranton-ua/deep-merge-js.git"
},
"author": "Anton Smirnov",
"license": "ISC",
"bugs": {
"url": "https://github.com/smiranton-ua/deep-merge-js/issues"
},
"homepage": "https://github.com/smiranton-ua/deep-merge-js#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"jest": "^24.9.0",
"rollup": "^1.28.0",
"rollup-plugin-terser": "^5.1.3"
}
}