-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 848 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
38
39
40
{
"name": "deep-copy",
"version": "1.4.2",
"description": "Deep copy objects and arrays",
"keywords": [
"deep",
"copy",
"object",
"array"
],
"license": "MIT",
"homepage": "https://github.com/simov/deep-copy",
"author": "Simeon Velichkov <[email protected]> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/deep-copy.git"
},
"dependencies": {},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
},
"main": "index.js",
"typings": "index.d.ts",
"files": [
"LICENSE",
"README.md",
"index.d.ts",
"index.js"
],
"scripts": {
"test": "npm run test-ci",
"test-ci": "mocha test/",
"test-cov": "istanbul cover _mocha test/"
},
"engines": {
"node": ">=4.0.0"
}
}