2022-11-01 08:57:19 +00: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 04:47:10 +00:00
|
|
|
"build": "run-s build:**",
|
|
|
|
"build:esm": "tsc",
|
2022-11-01 08:57:19 +00:00
|
|
|
"fix": "run-s fix:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"fix:lint": "eslint src tests --fix",
|
2022-11-01 08:57:19 +00:00
|
|
|
"check": "run-s check:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"check:lint": "eslint src tests",
|
2022-11-01 10:31:53 +00:00
|
|
|
"check:spelling": "cspell \"{README.md,{tests,src}/**/*.ts}\"",
|
2022-11-04 03:31:15 +00:00
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
2023-08-16 07:14:53 +00:00
|
|
|
"test": "run-s test:*",
|
|
|
|
"test:node": "node ./src/run-tests.js \"tests/**/!(*.optional).spec.ts\"",
|
2023-08-07 08:27:16 +00:00
|
|
|
"test:optional": "node ./src/run-tests.js \"tests/**/@(*.optional).spec.ts\"",
|
2022-11-01 09:13:09 +00:00
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
2022-11-01 08:57:19 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-04 06:56:38 +00:00
|
|
|
"@libp2p/interface-compliance-tests": "^4.0.5",
|
2023-08-28 16:42:23 +00:00
|
|
|
"@libp2p/peer-id": "^3.0.2",
|
2022-11-01 08:57:19 +00:00
|
|
|
"@waku/core": "*",
|
2022-11-16 04:49:43 +00:00
|
|
|
"@waku/enr": "*",
|
2022-11-03 10:48:04 +00:00
|
|
|
"@waku/interfaces": "*",
|
2023-02-09 02:21:03 +00:00
|
|
|
"@waku/utils": "*",
|
2023-02-10 02:06:33 +00:00
|
|
|
"app-root-path": "^3.1.0",
|
2023-01-31 14:17:46 +00:00
|
|
|
"debug": "^4.3.4",
|
2023-04-17 04:59:36 +00:00
|
|
|
"dockerode": "^3.3.5",
|
2023-02-10 02:06:33 +00:00
|
|
|
"p-timeout": "^6.1.0",
|
|
|
|
"portfinder": "^1.0.32",
|
2023-07-24 06:38:54 +00:00
|
|
|
"sinon": "^15.2.0",
|
2023-02-10 02:06:33 +00:00
|
|
|
"tail": "^2.2.6"
|
2022-11-01 08:57:19 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-16 14:48:13 +00:00
|
|
|
"@libp2p/bootstrap": "^9.0.2",
|
2023-08-11 13:14:02 +00:00
|
|
|
"@types/sinon": "^10.0.16",
|
2023-08-17 16:01:37 +00:00
|
|
|
"@types/chai": "^4.3.5",
|
2023-08-17 15:25:30 +00:00
|
|
|
"@types/dockerode": "^3.3.19",
|
2023-02-10 04:32:38 +00:00
|
|
|
"@types/mocha": "^10.0.1",
|
2023-02-09 02:53:34 +00:00
|
|
|
"@types/tail": "^2.2.1",
|
2023-08-17 14:20:35 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2023-08-11 13:14:02 +00:00
|
|
|
"@waku/sdk": "*",
|
2023-02-09 03:36:53 +00:00
|
|
|
"@waku/dns-discovery": "*",
|
|
|
|
"@waku/message-encryption": "*",
|
|
|
|
"@waku/peer-exchange": "*",
|
2023-02-10 03:02:02 +00:00
|
|
|
"chai": "^4.3.7",
|
2023-08-19 08:28:15 +00:00
|
|
|
"datastore-core": "^9.2.2",
|
2023-08-21 16:15:00 +00:00
|
|
|
"cspell": "^7.0.1",
|
2023-02-09 02:21:03 +00:00
|
|
|
"debug": "^4.3.4",
|
2023-08-16 14:48:13 +00:00
|
|
|
"interface-datastore": "^8.2.3",
|
|
|
|
"libp2p": "^0.46.3",
|
2023-02-10 02:59:44 +00:00
|
|
|
"mocha": "^10.2.0",
|
2022-11-01 08:57:19 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-08-16 14:48:13 +00:00
|
|
|
"prettier": "^2.8.8",
|
|
|
|
"typescript": "^5.0.4"
|
2022-11-01 08:57:19 +00:00
|
|
|
}
|
|
|
|
}
|