-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "onlyccfa",
"version": "0.8.1.2",
"private": true,
"description": "Chrome extension that labels academic search results with venue ranks, Chinese research identity signals, citation sorting, BibTeX export, and Zotero-friendly filters.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zay002/OnlyCCFA.git"
},
"bugs": {
"url": "https://github.com/zay002/OnlyCCFA/issues"
},
"homepage": "https://github.com/zay002/OnlyCCFA#readme",
"devDependencies": {
"git-format-staged": "^3.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "3.3.3"
},
"scripts": {
"prepare": "husky",
"format:check": "prettier --check README.md README_en.md PrivacyPolicy.md manifest.json package.json package-lock.json _locales/**/*.json css/filter.css css/style.css data/openRankSources.js data/coreRankSources.js data/authorRankSources.js data/swjtuRankSources.js data/thcplRankSources.js js/apiCache.js js/authorSources.js js/background.js js/bibtex.js js/ccf.js js/fetchRank.js js/filter.js js/i18n.js js/ieeexplore.js js/rankSources.js js/scholar.js js/semanticscholar.js scripts/benchmark-rank-matching.mjs scripts/check-release-health.js scripts/generate-author-rank-sources.mjs scripts/generate-core-rank-sources.mjs scripts/package-release.js scripts/track-cws-users.mjs test/**/*.js .github/workflows/*.yaml",
"benchmark:rank": "node scripts/benchmark-rank-matching.mjs",
"data:authors": "node scripts/generate-author-rank-sources.mjs",
"stats:cws": "node scripts/track-cws-users.mjs",
"package": "node scripts/package-release.js",
"check:release": "node scripts/check-release-health.js",
"test": "node test/filter.test.js && node test/filterSignals.test.js && node test/scholar.test.js && node test/semanticscholar.test.js && node test/ieeexplore.test.js && node test/bibtex.test.js && node test/ccf.test.js && node test/rankSources.test.js && node test/venueRegression.test.js && node test/authorSources.test.js && node test/fetchRank.test.js && node test/releaseHealth.test.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}