forked from panates/putil-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "putil-merge",
"description": "Lightweight solution for merging multiple objects into one. Also it supports deep merge and deep clone",
"version": "3.6.3",
"author": "Panates Ltd.",
"contributors": [
"Eray Hanoglu <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panates/putil-merge.git"
},
"main": "lib/merge.js",
"types": "lib/merge",
"keywords": [
"javascript",
"merge",
"object"
],
"dependencies": {},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">= 10.0"
},
"directories": {
"lib": "./lib"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"nyc": {
"temp-dir": "./coverage/.nyc_output"
},
"scripts": {
"test": "mocha --require ./test/support/env --reporter spec --bail --check-leaks test/",
"cover": "nyc --reporter html --reporter text npm run test",
"travis-cover": "nyc --reporter lcovonly npm run test"
}
}