-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 904 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 904 Bytes
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
{
"name": "@9elt/jsbm",
"version": "0.5.1",
"description": "A CLI to benchmark JavaScript (and TypeScript) on the spot, using JSDoc comments",
"type": "module",
"scripts": {
"build": "tsc && bun build.js",
"format": "prettier --write ./src/*.ts --write ./tests/*.ts",
"pub": "npm run build && npm run test && npm publish",
"test": "bun tests/index.ts"
},
"bin": {
"jsbm": "./index.js"
},
"author": "Lorenzo Cicuttin",
"license": "MIT",
"keywords": [
"node",
"bun",
"deno",
"benchmark",
"jsdoc"
],
"readme": "./README.md",
"homepage": "https://github.com/9elt/jsbm#readme",
"repository": "github:9elt/jsbm",
"devDependencies": {
"prettier": "^3.4.2",
"@types/node": "^22.10.5"
},
"dependencies": {
"typescript": "^5.7.2"
}
}