-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.15 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
{
"private": true,
"name": "benchmark-node-clone",
"description": "What is the fastest object cloning method?",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/benchmark-node-clone",
"repository": "ahmadnassri/benchmark-node-clone",
"license": "MIT",
"bin": "index.js",
"engines": {
"node": ">= 4"
},
"files": [
"index.js",
"fixture.json"
],
"bugs": {
"url": "https://github.com/ahmadnassri/benchmark-node-clone/issues"
},
"scripts": {
"pretest": "standard && echint",
"test": "node index"
},
"devDependencies": {
"beautify-benchmark": "^0.2.4",
"benchmark": "^2.1.2",
"chalk": "^1.1.3",
"clone-deep": "0.2.4",
"clone-extend": "0.1.2",
"clone": "2.1.0",
"cloneextend": "0.0.3",
"component-clone": "0.2.3",
"deep-copy": "1.1.2",
"deepclone": "1.0.2",
"deepcopy": "2.0.0",
"echint": "^4.0.1",
"extend": "3.0.0",
"fast-clone": "1.4.2",
"lodash": "4.17.11",
"standard": "^12.0.0",
"stringify-clone": "2.0.1",
"structured-clone": "0.2.2",
"utils-copy": "1.1.1"
}
}