-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.89 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.89 KB
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
{
"name": "wasm-benchmark",
"version": "1.0.0",
"description": "WebAssembly Performance Benchmark: Rust vs TinyGo Comparison",
"main": "harness/web/bench.js",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "node scripts/dev-server.js",
"test": "WASM_BENCH_TEST_LEVEL=full vitest run tests --reporter=verbose --testTimeout=300000 && node tests/utils/prettify-test-results.js",
"test:smoke": "WASM_BENCH_TEST_LEVEL=smoke vitest run tests/unit tests/integration/cross-language.test.js --testTimeout=10000 && node tests/utils/prettify-test-results.js",
"test:unit": "WASM_BENCH_TEST_LEVEL=unit vitest run tests/unit --reporter=verbose --testTimeout=5000 && node tests/utils/prettify-test-results.js",
"test:integration": "WASM_BENCH_TEST_LEVEL=integration vitest run tests/integration --reporter=verbose --testTimeout=60000 && node tests/utils/prettify-test-results.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alleninnz/wasm-benchmark.git"
},
"keywords": [
"webassembly",
"wasm",
"rust",
"go",
"tinygo",
"benchmark",
"performance",
"comparison"
],
"author": "Xingxing Wang",
"license": "MIT",
"dependencies": {
"blessed": "^0.1.81",
"chalk": "5.6.2",
"express": "^5.1.0",
"puppeteer": "24.23.0",
"yaml": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "9.37.0",
"@types/node": "24.7.0",
"cors": "^2.8.5",
"eslint": "9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.18.0",
"pnpm": ">=9.0.0"
},
"homepage": "https://github.com/alleninnz/wasm-benchmark#readme"
}