forked from bestiejs/benchmark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.23 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "benchmark",
"version": "1.0.0",
"description": "A benchmarking library that works on nearly all JavaScript platforms, supports high-resolution timers, and returns statistically significant results.",
"homepage": "http://benchmarkjs.com/",
"main": "benchmark",
"keywords": [
"benchmark",
"narwhal",
"node",
"performance",
"ringo",
"speed"
],
"licenses": [
{
"type": "MIT",
"url": "http://mths.be/mit"
}
],
"author": {
"name": "Mathias Bynens",
"email": "[email protected]",
"web": "http://mathiasbynens.be/"
},
"maintainers": [
{
"name": "John-David Dalton",
"email": "[email protected]",
"web": "http://allyoucanleet.com/"
},
{
"name": "Mathias Bynens",
"email": "[email protected]",
"web": "http://mathiasbynens.be/"
}
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/bestiejs/benchmark.js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bestiejs/benchmark.js.git"
},
"engines": [
"node",
"rhino"
],
"directories": {
"doc": "./doc",
"test": "./test"
},
"scripts": {
"test": "node test/test"
}
}