mirror of
https://github.com/status-im/libp2p-test-plans.git
synced 2025-01-14 17:04:09 +00:00
3b6d87b532
* Update Go test implementations to match new spec * Update JS test implementation * Update Rust test Implementation * Update root Makefile * Update runner to new spec * Use composite action and S3 caching * Not using GHA cache anymore * Try removing access key from env * Test workflow without cache keys (#131) * Test if it works without s3 cache keys * Fix if statement * Fix if statement * Always use buildkit * Undo debug change * Add no cache workflow * Skip test in no-cache workflow * Update .github/workflows/no-cache-multidim-interop.yml * Same workflow; use CACHING_OPTIONS * Add Browser WebRTC test (#130) * Add webrtc to JS test * Add onlyDial to all queries * Update versions.ts * Remove unneeded timeout overrides
40 lines
929 B
JSON
40 lines
929 B
JSON
{
|
|
"name": "multidim-interop",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "Multidimension Interop Test",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"author": "Glen De Cauwsemaecker <glen@littlebearlabs.io>",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"build": "aegir build",
|
|
"test": "aegir test"
|
|
},
|
|
"dependencies": {
|
|
"@chainsafe/libp2p-noise": "^10.2.0",
|
|
"@chainsafe/libp2p-yamux": "^3.0.4",
|
|
"@libp2p/mplex": "^7.1.1",
|
|
"@libp2p/tcp": "^6.0.8",
|
|
"@libp2p/webrtc": "^1.0.3",
|
|
"@libp2p/websockets": "^5.0.1",
|
|
"@libp2p/webtransport": "^1.0.7",
|
|
"@multiformats/multiaddr": "^11.1.4",
|
|
"libp2p": "^0.41.0",
|
|
"node-fetch": "^3.3.0",
|
|
"redis": "4.5.1"
|
|
},
|
|
"browser": {
|
|
"@libp2p/tcp": false
|
|
},
|
|
"devDependencies": {
|
|
"aegir": "^38.1.0",
|
|
"standard": "^17.0.0",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|