-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 932 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
{
"name": "iso-bench",
"version": "2.4.7",
"description": "Small benchmark library focused in avoiding optimization/deoptimization pollution between tests by isolating them.",
"types": "./lib/_types/index.d.ts",
"main": "./lib/",
"files": [
"lib/"
],
"keywords": [
"benchmark",
"performance",
"workers",
"context",
"pollution",
"opt",
"deopt",
"optimizations",
"deoptimizations",
"benny"
],
"scripts": {
"clean": "node -e \"(require('fs').rm||require('fs').rmdir)('lib', { recursive: true }, ()=>{});\"",
"watch": "npm run clean && npx tsc --watch --inlineSourcemap",
"build": "npm run clean && npx tsc --project tsconfig.build.json"
},
"author": "Llorx",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/llorx/iso-bench"
},
"devDependencies": {
"@types/node": "^18.6.3",
"typescript": "^4.4.4"
}
}