js-waku/packages/tests/package.json

77 lines
1.9 KiB
JSON
Raw Normal View History

2022-11-01 08:57:19 +00:00
{
"name": "@waku/tests",
"private": true,
"version": "0.0.1",
"description": "Waku tests",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"typesVersions": {
"*": {
"lib/*": [
"dist/lib/*"
]
}
},
"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": {
"fix": "run-s fix:*",
"fix:prettier": "prettier . --write",
2022-11-01 09:13:09 +00:00
"fix:lint": "eslint tests --ext .ts --ext .cjs --fix",
2022-11-01 08:57:19 +00:00
"check": "run-s check:*",
2022-11-01 09:13:09 +00:00
"check:lint": "eslint tests --ext .ts",
2022-11-01 08:57:19 +00:00
"check:prettier": "prettier . --list-different",
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
2022-11-01 09:13:09 +00:00
"check:tsc": "tsc -p tsconfig.json",
"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": {
"@waku/interfaces": "*",
"@waku/core": "*",
"@waku/create": "*"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"cspell": "^5.14.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"typescript": "^4.6.3"
}
}