2022-11-01 19:57:19 +11:00
|
|
|
{
|
|
|
|
"name": "@waku/tests",
|
|
|
|
"private": true,
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Waku tests",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"module": "./dist/index.js",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"type": "module",
|
|
|
|
"author": "Waku Team",
|
|
|
|
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/tests#readme",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/waku-org/js-waku.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/waku-org/js-waku/issues"
|
|
|
|
},
|
|
|
|
"license": "MIT OR Apache-2.0",
|
|
|
|
"keywords": [
|
|
|
|
"waku",
|
|
|
|
"decentralized",
|
|
|
|
"secure",
|
|
|
|
"communication",
|
|
|
|
"web3",
|
|
|
|
"ethereum",
|
|
|
|
"dapps",
|
|
|
|
"privacy"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2023-02-24 15:47:10 +11:00
|
|
|
"build": "run-s build:**",
|
|
|
|
"build:esm": "tsc",
|
2022-11-01 19:57:19 +11:00
|
|
|
"fix": "run-s fix:*",
|
2023-02-28 14:55:17 +11:00
|
|
|
"fix:lint": "eslint src tests --fix",
|
2022-11-01 19:57:19 +11:00
|
|
|
"check": "run-s check:*",
|
2023-02-28 14:55:17 +11:00
|
|
|
"check:lint": "eslint src tests",
|
2022-11-01 21:31:53 +11:00
|
|
|
"check:spelling": "cspell \"{README.md,{tests,src}/**/*.ts}\"",
|
2022-11-04 14:31:15 +11:00
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
2024-01-02 16:30:18 +05:30
|
|
|
"test": "NODE_ENV=test run-s test:*",
|
|
|
|
"test:node": "NODE_ENV=test node ./src/run-tests.js \"tests/**/!(*.optional).spec.ts\"",
|
|
|
|
"test:optional": "NODE_ENV=test node ./src/run-tests.js \"tests/**/@(*.optional).spec.ts\"",
|
2022-11-01 20:13:09 +11:00
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
2022-11-01 19:57:19 +11:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-09-22 14:37:34 +05:30
|
|
|
"node": ">=18"
|
2022-11-01 19:57:19 +11:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-31 23:14:04 +01:00
|
|
|
"@libp2p/interface-compliance-tests": "^5.2.0",
|
2024-01-15 16:12:01 -08:00
|
|
|
"@libp2p/peer-id": "^4.0.4",
|
2022-11-01 19:57:19 +11:00
|
|
|
"@waku/core": "*",
|
2022-11-16 15:49:43 +11:00
|
|
|
"@waku/enr": "*",
|
2022-11-03 21:48:04 +11:00
|
|
|
"@waku/interfaces": "*",
|
2023-02-09 13:21:03 +11:00
|
|
|
"@waku/utils": "*",
|
2023-02-10 13:06:33 +11:00
|
|
|
"app-root-path": "^3.1.0",
|
2023-09-08 21:36:55 +05:30
|
|
|
"chai-as-promised": "^7.1.1",
|
2023-01-31 19:47:46 +05:30
|
|
|
"debug": "^4.3.4",
|
2023-04-17 10:29:36 +05:30
|
|
|
"dockerode": "^3.3.5",
|
2024-02-09 00:06:00 +01:00
|
|
|
"fast-check": "^3.15.1",
|
2023-10-04 12:56:54 +05:30
|
|
|
"p-retry": "^6.1.0",
|
2023-02-10 13:06:33 +11:00
|
|
|
"p-timeout": "^6.1.0",
|
|
|
|
"portfinder": "^1.0.32",
|
2023-12-05 14:29:06 +05:30
|
|
|
"sinon": "^17.0.1",
|
2023-02-10 13:06:33 +11:00
|
|
|
"tail": "^2.2.6"
|
2022-11-01 19:57:19 +11:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-15 16:12:01 -08:00
|
|
|
"@libp2p/bootstrap": "^10.0.11",
|
2023-11-27 12:26:31 +01:00
|
|
|
"@types/chai": "^4.3.11",
|
2023-08-17 20:55:30 +05:30
|
|
|
"@types/dockerode": "^3.3.19",
|
2024-02-05 22:41:46 +01:00
|
|
|
"@types/mocha": "^10.0.6",
|
2024-02-12 16:29:54 +05:30
|
|
|
"@types/sinon": "^17.0.3",
|
2023-12-19 20:47:33 +01:00
|
|
|
"@types/tail": "^2.2.3",
|
2024-03-12 15:56:49 +05:30
|
|
|
"@waku/discovery": "*",
|
2023-02-09 14:36:53 +11:00
|
|
|
"@waku/message-encryption": "*",
|
2023-09-08 21:36:55 +05:30
|
|
|
"@waku/sdk": "*",
|
2024-03-12 00:20:10 +01:00
|
|
|
"allure-commandline": "^2.27.0",
|
2023-10-23 17:53:56 +03:00
|
|
|
"allure-mocha": "^2.9.2",
|
2023-11-27 12:26:31 +01:00
|
|
|
"chai": "^4.3.10",
|
2024-02-05 22:57:20 +01:00
|
|
|
"cspell": "^8.3.2",
|
2024-01-12 13:10:08 +01:00
|
|
|
"datastore-core": "^9.2.7",
|
2023-02-09 13:21:03 +11:00
|
|
|
"debug": "^4.3.4",
|
2024-01-16 19:15:28 +01:00
|
|
|
"interface-datastore": "^8.2.10",
|
2024-01-15 16:12:01 -08:00
|
|
|
"libp2p": "^1.1.2",
|
2024-02-13 22:21:57 +05:30
|
|
|
"mocha": "^10.3.0",
|
2023-10-23 17:53:56 +03:00
|
|
|
"mocha-multi-reporters": "^1.5.1",
|
2023-09-21 10:57:37 +02:00
|
|
|
"npm-run-all": "^4.1.5"
|
2022-11-01 19:57:19 +11:00
|
|
|
}
|
|
|
|
}
|