forked from caderek/benny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@ehp/benny",
"version": "3.6.16",
"main": "lib/index.js",
"license": "MIT",
"repository": "https://github.com/eugenehp/benny",
"homepage": "https://github.com/eugenehp/benny#README",
"description": "A dead simple benchmarking framework",
"keywords": [
"benchmark",
"benchmarking",
"simple",
"framework",
"async",
"asynchronous",
"async setup",
"await",
"promise",
"save",
"performance",
"perf",
"test",
"testing",
"functional",
"fp",
"typed",
"ts",
"typescript",
"async",
"promise",
"statistics",
"statistical",
"execution time",
"time",
"hrtime",
"setup"
],
"author": "Maciej Cąderek",
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage && codecov",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "yarn build",
"dev": "npx tsnd demo.ts"
},
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/fs-extra": "^9.0.4",
"@types/jest": "^26.0.15",
"@types/json2csv": "^5.0.1",
"@types/node": "^14.14.7",
"@types/prettier": "^2.1.5",
"codecov": "^3.6.1",
"csvtojson": "^2.0.10",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@arrows/composition": "^1.0.0",
"@arrows/dispatch": "^1.0.2",
"@arrows/multimethod": "^1.1.6",
"benchmark": "^2.1.4",
"json2csv": "^5.0.4",
"kleur": "^4.1.3",
"log-update": "^4.0.0",
"prettier": "^2.1.2"
}
}