mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-05 07:13:11 +00:00
Also ensures that eslint is present in packages that uses it and removed from packages not using it.
35 lines
905 B
JSON
35 lines
905 B
JSON
{
|
|
"name": "@waku/build-utils",
|
|
"version": "1.0.0",
|
|
"description": "Build utilities for js-waku",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"fix": "run-s fix:*",
|
|
"fix:lint": "eslint . --fix",
|
|
"check": "run-s check:*",
|
|
"check:lint": "eslint ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/waku-org/js-waku.git"
|
|
},
|
|
"author": "Waku Team",
|
|
"license": "MIT OR Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/waku-org/js-waku/issues"
|
|
},
|
|
"homepage": "https://github.com/waku-org/js-waku#readme",
|
|
"devDependencies": {
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-functional": "^5.0.4",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.8.8"
|
|
}
|
|
}
|