-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 852 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
{
"name": "fastbench",
"version": "1.0.0",
"description": "the simplest benchmark you can run on node",
"main": "bench.js",
"scripts": {
"lint": "standard",
"test": "tape test.js | faucet"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastbench.git"
},
"keywords": [
"benchmark",
"fast"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/fastbench/issues"
},
"homepage": "https://github.com/mcollina/fastbench#readme",
"devDependencies": {
"faucet": "0.0.1",
"pre-commit": "^1.0.10",
"proxyquire": "^1.6.0",
"standard": "^4.5.2",
"tape": "^4.0.0"
},
"dependencies": {
"chalk": "^1.1.0",
"fastseries": "^1.3.1"
}
}