-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 995 Bytes
/
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
{
"name": "deep-cloning",
"version": "1.1.0",
"description":
"Deep copy library for any kind of data structures in JavaScript!",
"main": "index.js",
"scripts": {
"test": "mocha test.js",
"test:cov":
"rm -rf ./coverage && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GreyArk/deep-cloning.git"
},
"keywords": [
"deep",
"clone",
"copy",
"data",
"data structures",
"deep copy",
"deep clone"
],
"author": "Kafil Uddin Kiron <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/GreyArk/deep-cloning/issues"
},
"homepage": "https://github.com/GreyArk/deep-cloning#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^4.0.1"
}
}