-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.37 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
{
"name": "power-merge",
"version": "1.6.1",
"description": "Merge multiple objects and/or arrays in a configurable way by defining rules that govern whether an attribute should be cloned, referenced, recursed, mutated or ignored",
"main": "index.js",
"scripts": {
"test": "node test",
"coverage": "nyc --report html --reporter lcov --reporter text-summary node test",
"lint": "eslint ."
},
"keywords": [
"merge",
"clone",
"recursive",
"recurse",
"deep",
"arrays",
"advanced",
"configure",
"configurable",
"custom",
"rules"
],
"author": "Stephen Cresswell",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-esnext": "^4.1.0",
"husky": "^4.3.8",
"nyc": "^15.1.0",
"zunit": "^3.0.4"
},
"dependencies": {
"async.asyncify": "^0.5.2",
"debug": "^4.3.1",
"hogan.js": "^3.0.2",
"ramda": "^0.27.1",
"require-all": "^3.0.0",
"variadic": "^1.0.1"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/power-merge.git"
},
"bugs": {
"url": "https://github.com/acuminous/power-merge/issues"
},
"homepage": "https://acuminous.github.io/power-merge/",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm test"
}
}
}