forked from jhildenbiddle/mergician
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.17 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "mergician",
"version": "1.0.3",
"description": "Mergician is a uniquely flexible and light-weight utility for deep (recursive) merging/cloning of JavaScript objects. Includes options to filter, inspect, and modify properties as well as merge, sort, and remove duplicate items from arrays. Properly handles property accessors (getters/setters) and descriptors. Returns new object without modifying sources (immutable).",
"author": "John Hildenbiddle",
"license": "MIT",
"homepage": "https://jhildenbiddle.github.io/mergician/",
"repository": {
"type": "git",
"url": "git+https://[email protected]/jhildenbiddle/mergician.git"
},
"bugs": {
"url": "https://github.com/jhildenbiddle/mergician/issues"
},
"keywords": [
"deep",
"merge",
"assign",
"clone",
"copy",
"extend",
"object",
"recursive",
"immutable",
"filter",
"array",
"append",
"prepend",
"dedup",
"duplicates",
"sort",
"get",
"getter",
"set",
"setter",
"accessor",
"descriptor",
"javascript",
"deepmerge",
"deep-merge",
"merge-deep"
],
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist"
],
"main": "./dist/mergician.cjs",
"module": "./dist/mergician.mjs",
"browser": "./dist/mergician.min.js",
"unpkg": "./dist/mergician.min.mjs",
"exports": {
".": {
"import": "./dist/mergician.mjs",
"require": "./dist/mergician.cjs"
}
},
"sideEffects": false,
"scripts": {
"build": "node build.js",
"clean": "rimraf coverage/* dist/*",
"escheck": "es-check es2018 'dist/**/*.js' --module",
"lint": "eslint . && markdownlint . --ignore node_modules",
"prepare": "run-s clean build",
"serve": "node server.js",
"start": "run-p serve 'build -- --watch'",
"test": "jest",
"version": "run-s prepare lint escheck test"
},
"devDependencies": {
"browser-sync": "^2.27.10",
"compression": "^1.7.4",
"es-check": "^7.0.0",
"esbuild": "^0.14.47",
"eslint": "^8.18.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"markdownlint-cli": "^0.32.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}