-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "benchmark",
"private": "true",
"type": "module",
"version": "1.0.0",
"author": "Daniel Rolf",
"license": "MIT",
"module": "dist/index.js",
"main": "dist/index.cjs",
"scripts": {
"build": "rm -rf dist && microbundle -f esm --target node",
"run": "node dist/index.js",
"profile": "(rm isolate-* || true) && node --prof dist/index.js && node --prof-process isolate-* > prof.log",
"format": "prettier --write --plugin-search-dir=. **/*.ts **/*.js",
"lint": "eslint src --fix",
"test": "jest"
},
"source": "src/index.ts",
"devDependencies": {
"@msgpack/msgpack": "^2.7.1",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"bson": "^4.6.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"microbundle": "^0.14.2",
"pico-json": "workspace:*",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
},
"dependencies": {
"node-fetch": "^3.1.0",
"lz4": "^0.6.5"
}
}