forked from AlexeyKupershtokh/node-v8-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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
{
"name": "node-v8-clone",
"version": "0.6.2",
"description": "The most convenient and accurate cloner for node.js. It's also very fast in some cases (benchmarks inside).",
"main": "lib/clone.js",
"scripts": {
"test": "node_modules/.bin/mocha -R spec test/test.js",
"test-3rdparty": "node_modules/.bin/mocha -R spec test/3rdparty.js --colors 2>/dev/null; exit 0",
"benchmark-prepare": "npm install benchmark cloneextend clone lodash underscore owl-deepcopy benchmark.js-plot",
"benchmark": "node bench/arrays.js; node bench/class.js; node bench/date.js; node bench/deep.js; node bench/deep_array.js; node bench/number.js; node bench/object.js; node bench/regexp.js",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git://github.com/AlexeyKupershtokh/node-v8-clone.git"
},
"bugs": {
"url": "https://github.com/AlexeyKupershtokh/node-v8-clone/issues",
"email": "[email protected]"
},
"keywords": [
"v8",
"clone",
"performance",
"speed"
],
"author": "Alexey Kupershtokh <[email protected]>",
"license": "BSD",
"gypfile": true,
"readmeFilename": "README.md",
"dependencies": {
"bindings": "~1.2",
"nan": "~1.1"
},
"devDependencies": {
"mocha": "*"
}
}