mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-02 02:17:48 -05:00
Efforts to reduce the resources used by CI: * Only one git checkout * Exclusion of irrelevant directories for several commands * Fix some rtlcss warnings * Move some commands from tests.yml to composer.json to make them reusasble * Initial efforts to take avantage of all that from `make` (help welcome)
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "freshrss",
|
|
"description": "A free, self-hostable aggregator",
|
|
"homepage": "https://freshrss.org/",
|
|
"readmeFilename": "README.md",
|
|
"bugs": {
|
|
"url": "https://github.com/FreshRSS/FreshRSS/issues"
|
|
},
|
|
"keywords": [
|
|
"news",
|
|
"aggregator",
|
|
"RSS",
|
|
"Atom",
|
|
"WebSub"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/FreshRSS/FreshRSS.git"
|
|
},
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"eslint": "eslint --ext .js .",
|
|
"eslint_fix": "eslint --fix --ext .js .",
|
|
"markdownlint": "markdownlint '**/*.md'",
|
|
"markdownlint_fix": "markdownlint --fix '**/*.md'",
|
|
"rtlcss": "rtlcss -d p/themes/ && find p/themes/ -type f -name '*.rtl.rtl.css' -delete",
|
|
"stylelint": "stylelint '**/*.css' && stylelint --syntax scss '**/*.scss'",
|
|
"stylelint_fix": "stylelint --fix '**/*.css' && stylelint --fix --syntax scss '**/*.scss'",
|
|
"test": "npm run eslint && npm run stylelint && npm run markdownlint",
|
|
"fix": "npm run rtlcss && npm run stylelint_fix && npm run eslint_fix && npm run markdownlint_fix"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.25.2",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.1",
|
|
"markdownlint-cli": "^0.29.0",
|
|
"rtlcss": "^3.4.0",
|
|
"stylelint": "^13.13.1",
|
|
"stylelint-config-recommended-scss": "^4.3.0",
|
|
"stylelint-order": "^4.1.0",
|
|
"stylelint-scss": "^3.21.0"
|
|
},
|
|
"rtlcssConfig": {}
|
|
}
|