-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 856 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
{
"name": "node-deepcopy",
"version": "0.1.1",
"description" : "deep copy for any JavaScript object ",
"main": "index.js",
"scripts": {
"test": "mocha --recursive --timeout 15000 -R spec --require should test/ --bail",
"test-travis": "node node_modules/istanbul-harmony/lib/cli.js cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -u exports --require should --timeout 15000 --recursive test/ --bail"
},
"repository": {
"type": "git",
"url": "git://github.com/rockdragon/node-deepcopy.git"
},
"keywords": [
"deep copy",
"clone",
"javascript object"
],
"author": "Mo Ye <[email protected]> (http://www.moye.me/)",
"devDependencies": {
"istanbul-harmony": "*",
"coveralls": "*",
"should": "*",
"mocha": "*"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.11"
}
}