-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "array-object-merge",
"version": "1.2.1",
"description": "Merge objects with arrays of objects based on given object key",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tnptop/array-object-merge.git"
},
"scripts": {
"test": "mocha test/**.test.js",
"test:watch": "npm run test --watch",
"coverage": "nyc --check-coverage --statements 100 --branches 100 --functions 100 --lines 100 --reporter=lcov --reporter=text npm run test",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls"
},
"author": "Thanapat Bhunnachet",
"license": "MIT",
"keywords": [
"object",
"arrays",
"array",
"merge",
"deep",
"key",
"by",
"in"
],
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.mergewith": "^4.6.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"proxyquire": "^2.1.3",
"sinon": "^9.0.1"
}
}