Compare commits
47 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
836871b041 | ||
|
|
7c11156848 | ||
|
|
c1b20d560d | ||
|
|
790ef209bc | ||
|
|
0fecfab673 | ||
|
|
319a4b66aa | ||
|
|
feba1f3c24 | ||
|
|
c165625db0 | ||
|
|
6525c264a5 | ||
|
|
360c4907c9 | ||
|
|
41b7af419d | ||
|
|
93bc80de36 | ||
|
|
29a475b729 | ||
|
|
dbb386dbb9 | ||
|
|
24163541fd | ||
|
|
82ccf3218d | ||
|
|
f308cea87b | ||
|
|
a2996eeefb | ||
|
|
8396437cb8 | ||
|
|
2c0c4ead96 | ||
|
|
6da935060e | ||
|
|
883a510682 | ||
|
|
f3049b7661 | ||
|
|
abf2440fb5 | ||
|
|
c11ae3ecae | ||
|
|
1e63860107 | ||
|
|
77131eeea6 | ||
|
|
8ab0432154 | ||
|
|
bca86c48d8 | ||
|
|
f5533155c5 | ||
|
|
0fa91e1521 | ||
|
|
d3a7eae103 | ||
|
|
de1c326168 | ||
|
|
5f36ec60c7 | ||
|
|
ef2b6c3fd0 | ||
|
|
89245e3162 | ||
|
|
1197d1f083 | ||
|
|
7c85a64698 | ||
|
|
d3ceff2c1e | ||
|
|
4a10ec1289 | ||
|
|
411f61584b | ||
|
|
c66687bbbf | ||
|
|
f8a7b3b2e5 | ||
|
|
41f7bedf63 | ||
|
|
8a19c65553 | ||
|
|
3db945f043 | ||
|
|
f06b30754b |
@@ -1 +1,2 @@
|
||||
node_modules
|
||||
vendor
|
||||
|
||||
13
.phpcs.xml
Normal file
13
.phpcs.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0"?>
|
||||
<ruleset>
|
||||
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki">
|
||||
<exclude name="MediaWiki.Files.ClassMatchesFilename.NotMatch" />
|
||||
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationProtected" />
|
||||
<exclude name="MediaWiki.Commenting.FunctionComment.MissingDocumentationPublic" />
|
||||
<exclude name="MediaWiki.Usage.DbrQueryUsage.DbrQueryFound" />
|
||||
<exclude name="Squiz.Scope.MethodScope.Missing" />
|
||||
</rule>
|
||||
<file>.</file>
|
||||
<arg name="extensions" value="php" />
|
||||
<arg name="encoding" value="UTF-8" />
|
||||
</ruleset>
|
||||
1
CODE_OF_CONDUCT.md
Normal file
1
CODE_OF_CONDUCT.md
Normal file
@@ -0,0 +1 @@
|
||||
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Special:MyLanguage/Code_of_Conduct).
|
||||
@@ -59,7 +59,7 @@ function efContributionScores_Render( &$parser, $usertext, $metric = 'score' ) {
|
||||
}
|
||||
|
||||
$user = User::newFromName( $usertext );
|
||||
$dbr = wfGetDB( DB_SLAVE );
|
||||
$dbr = wfGetDB( DB_REPLICA );
|
||||
|
||||
if ( $user instanceof User && $user->isLoggedIn() ) {
|
||||
global $wgLang;
|
||||
|
||||
@@ -21,18 +21,18 @@ class ContributionScores extends IncludableSpecialPage {
|
||||
/**
|
||||
* Function generates Contribution Scores tables in HTML format (not wikiText)
|
||||
*
|
||||
* @param $days int Days in the past to run report for
|
||||
* @param $limit int Maximum number of users to return (default 50)
|
||||
* @param $title Title (default null)
|
||||
* @param $options array of options (default none; nosort/notools)
|
||||
* @return Html Table representing the requested Contribution Scores.
|
||||
* @param int $days Days in the past to run report for
|
||||
* @param int $limit Maximum number of users to return (default 50)
|
||||
* @param string|null $title The title of the table
|
||||
* @param array $options array of options (default none; nosort/notools)
|
||||
* @return string Html Table representing the requested Contribution Scores.
|
||||
*/
|
||||
function genContributionScoreTable( $days, $limit, $title = null, $options = 'none' ) {
|
||||
global $wgContribScoreIgnoreBots, $wgContribScoreIgnoreBlockedUsers, $wgContribScoresUseRealName;
|
||||
|
||||
$opts = explode( ',', strtolower( $options ) );
|
||||
|
||||
$dbr = wfGetDB( DB_SLAVE );
|
||||
$dbr = wfGetDB( DB_REPLICA );
|
||||
|
||||
$userTable = $dbr->tableName( 'user' );
|
||||
$userGroupTable = $dbr->tableName( 'user_groups' );
|
||||
@@ -188,7 +188,7 @@ class ContributionScores extends IncludableSpecialPage {
|
||||
/**
|
||||
* Called when being included on a normal wiki page.
|
||||
* Cache is disabled so it can depend on the user language.
|
||||
* @param $par
|
||||
* @param string|null $par A subpage give to the special page
|
||||
*/
|
||||
function showInclude( $par ) {
|
||||
$days = null;
|
||||
|
||||
@@ -18,7 +18,8 @@ module.exports = function ( grunt ) {
|
||||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'!node_modules/**'
|
||||
'!node_modules/**',
|
||||
'!vendor/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
||||
@@ -1,13 +1,20 @@
|
||||
{
|
||||
"require-dev": {
|
||||
"jakub-onderka/php-parallel-lint": "0.9.2",
|
||||
"mediawiki/mediawiki-codesniffer": "0.7.2"
|
||||
"mediawiki/mediawiki-codesniffer": "19.4.0",
|
||||
"mediawiki/minus-x": "0.3.1",
|
||||
"php-parallel-lint/php-console-highlighter": "0.3.2",
|
||||
"php-parallel-lint/php-parallel-lint": "1.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"fix": "phpcbf",
|
||||
"fix": [
|
||||
"minus-x fix .",
|
||||
"phpcbf"
|
||||
],
|
||||
"test": [
|
||||
"parallel-lint . --exclude vendor",
|
||||
"phpcs -p -s"
|
||||
]
|
||||
"parallel-lint . --exclude vendor --exclude node_modules",
|
||||
"@phpcs",
|
||||
"minus-x check ."
|
||||
],
|
||||
"phpcs": "phpcs -sp --cache"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,16 +2,18 @@
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"CERminator",
|
||||
"KWiki"
|
||||
"KWiki",
|
||||
"Srdjan m"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Rezultat doprinosa",
|
||||
"contributionscores-desc": "Upit u wiki bazu podataka za najveći [[Special:ContributionScores|količinski korisnički doprinos]]",
|
||||
"contributionscores-info": "Rezultati se računaju na slijedeći naćin:\n*Jedan (1) bod za svaku pojedinu stranicu koja se uredi\n*Drugi korijen od (ukupno načinjenih promjena) - (ukupno pojedinih stranica) * 2\nRezultati koji se dobiju na ovaj način naglašavaju raznolikost uređivanja više od količine uređivanja.\nU osnovi, ovaj rezultat mjeri naročito broj uređivanja pojedinačnih stranica, sa utjecajem velike količine uređivanja - smatra se da utječe na bolji kvalitet stranice.",
|
||||
"contributionscores-info": "Ovaj rezultat prvenstveno mjeri broj uređivanja pojedinačnih stranica, uzimajući u obzir velike količine uređivanja.",
|
||||
"contributionscores-top": "(Najboljih $1)",
|
||||
"contributionscores-days": "{{PLURAL:$1|Posljednji $1 dan|Posljednja $1 dana|Posljednjih $1 dana}}",
|
||||
"contributionscores-allrevisions": "Svo vrijeme",
|
||||
"contributionscores-score": "Rezultat",
|
||||
"contributionscores-rank": "Rang",
|
||||
"contributionscores-pages": "Stranice",
|
||||
"contributionscores-changes": "Izmjene",
|
||||
"contributionscores-username": "Korisničko ime",
|
||||
|
||||
10
i18n/fi.json
10
i18n/fi.json
@@ -4,17 +4,21 @@
|
||||
"Crt",
|
||||
"Nike",
|
||||
"Str4nd",
|
||||
"Stryn"
|
||||
"Stryn",
|
||||
"Pxos",
|
||||
"Pyscowicz"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Muokkauspisteet",
|
||||
"contributionscores-info": "Pisteet lasketaan seuraavalla kaavalla:\n* Yksi piste jokaisesta muokatusta sivusta\n* Neliöjuuri (muokkausten määrä) - (muokatut sivut) * 2\n\nNäin laskettuna pisteet painottavat monipuolisuutta määrän sijaan. Käytännössä pisteet mittaavat muokattujen sivujen määrää, ottaen huomioon muutosten suuren määrän.",
|
||||
"contributionscores-info": "Pistemäärä kuvaa ensisijaisesti muokattujen sivujen lukumäärää, mutta ottaa huomioon myös suuren muokkausmäärän yleisesti.",
|
||||
"contributionscores-top": "(top $1)",
|
||||
"contributionscores-days": "{{PLURAL:$1|Viime päivä|Viimeiset $1 päivää}}",
|
||||
"contributionscores-allrevisions": "Koko ajalta",
|
||||
"contributionscores-score": "Pisteet",
|
||||
"contributionscores-rank": "Sija",
|
||||
"contributionscores-pages": "Sivuja",
|
||||
"contributionscores-changes": "Muutoksia",
|
||||
"contributionscores-username": "Käyttäjätunnus",
|
||||
"contributionscores-invalidusername": "Virheellinen käyttäjätunnus"
|
||||
"contributionscores-invalidusername": "Virheellinen käyttäjätunnus",
|
||||
"contributionscores-invalidmetric": "Virheellinen muuttuja"
|
||||
}
|
||||
|
||||
@@ -2,7 +2,8 @@
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Snakesteuben",
|
||||
"Robin0van0der0vliet"
|
||||
"Robin0van0der0vliet",
|
||||
"Robin van der Vliet"
|
||||
]
|
||||
},
|
||||
"contributionscores-username": "Brûkersnamme"
|
||||
|
||||
@@ -3,14 +3,15 @@
|
||||
"authors": [
|
||||
"Ansumang",
|
||||
"Kaustubh",
|
||||
"Siddhartha Ghai"
|
||||
"Siddhartha Ghai",
|
||||
"Sfic"
|
||||
]
|
||||
},
|
||||
"contributionscores": "योगदान संख्या",
|
||||
"contributionscores-desc": "[[Special:ContributionScores|सदस्य योगदान संख्या]]के अनुसार विकि डाटाबेस दर्शाता हैं",
|
||||
"contributionscores-top": "(पहले $1)",
|
||||
"contributionscores-days": "आखिरी {{PLURAL:$1|$1 दिन}}",
|
||||
"contributionscores-allrevisions": "सभी अवतरण",
|
||||
"contributionscores-allrevisions": "हर समय",
|
||||
"contributionscores-score": "गुण",
|
||||
"contributionscores-pages": "पृष्ठ",
|
||||
"contributionscores-changes": "बदलाव",
|
||||
|
||||
8
i18n/io.json
Normal file
8
i18n/io.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Joao Xavier"
|
||||
]
|
||||
},
|
||||
"contributionscores-days": "Lasta {{PLURAL:$1|dio|$1 dii}}"
|
||||
}
|
||||
@@ -2,7 +2,8 @@
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"S.Örvarr.S",
|
||||
"Snævar"
|
||||
"Snævar",
|
||||
"Sveinn í Felli"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Framleggjandastig",
|
||||
@@ -12,6 +13,7 @@
|
||||
"contributionscores-days": "{{PLURAL:$1|Síðasta $1 daginn|Síðustu $1 dagana}}",
|
||||
"contributionscores-allrevisions": "Allan tímann",
|
||||
"contributionscores-score": "Stigafjöldi",
|
||||
"contributionscores-rank": "Sæti",
|
||||
"contributionscores-pages": "Síður",
|
||||
"contributionscores-changes": "Breytingar",
|
||||
"contributionscores-username": "Notandanafn"
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"NoiX180"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Skor sumbangan",
|
||||
"contributionscores": "Bijining pasumbang",
|
||||
"contributionscores-desc": "Nglakokaké polling (angkèt) ing basis data kanggo [[Special:ContributionScores|volume kontribusi panganggo]]",
|
||||
"contributionscores-info": "Skoré diétung kaya mangkéné:\n* Biji siji (1) per kaca unik sing disunting\n* Oyot (bs. Indonesia ''akar'') saka (Gunggungé Suntingan) - (Gunggungé Kaca-KAca Unik) * 2\nSkor sing diétung miturut cara iki bisa nyerminaké divèrsitas suntingan sadhuwuring volume suntingan.\nSacara dhasar, skor iki utamané ngétung kaca-kaca unik sing disunting, karo mélu nimbangaké volume suntingan dhuwur - diasumsèkaké kwalitas kacané luwih dhuwur.",
|
||||
"contributionscores-top": "(Top $1)",
|
||||
|
||||
20
i18n/kab.json
Normal file
20
i18n/kab.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Belkacem77"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Agmuḍ n uttekki",
|
||||
"contributionscores-desc": "Ad yesleḍ taffa n isefka n iwikiyen ɣef [[Special:ContributionScores|tesmekta n ittekkiyen n iseqdacen]]",
|
||||
"contributionscores-info": "Agmuḍ ad yektil di tazwara isebtar isufen yettwasnifel, ɣas ulama ddeqs n tesmekta n usinifel i yellan.",
|
||||
"contributionscores-top": "($1 imezwura)",
|
||||
"contributionscores-days": "Deg {{PLURAL:$1|wass aneggaru|$1 n wussan ineggura}}",
|
||||
"contributionscores-allrevisions": "Si tazwara",
|
||||
"contributionscores-score": "Agmuḍ",
|
||||
"contributionscores-rank": "Amḍiq",
|
||||
"contributionscores-pages": "Isebtar",
|
||||
"contributionscores-changes": "Asnifel",
|
||||
"contributionscores-username": "Isem n useqdac",
|
||||
"contributionscores-invalidusername": "Yir isem n useqdac",
|
||||
"contributionscores-invalidmetric": "Yir asekkat"
|
||||
}
|
||||
@@ -12,7 +12,8 @@
|
||||
"contributionscores-days": "{{PLURAL:$1|ថ្ងៃ|$1 ថ្ងៃ}}ចុងក្រោយ",
|
||||
"contributionscores-allrevisions": "គ្រប់ពេល",
|
||||
"contributionscores-score": "ពិន្ទុ",
|
||||
"contributionscores-pages": "ទំព័រនានា",
|
||||
"contributionscores-rank": "ចំណាត់ថ្នាក់",
|
||||
"contributionscores-pages": "ទំព័រ",
|
||||
"contributionscores-changes": "បន្លាស់ប្ដូរ",
|
||||
"contributionscores-username": "អត្តនាម",
|
||||
"contributionscores-invalidusername": "អត្តនាមមិនត្រឹមត្រូវ"
|
||||
|
||||
@@ -8,11 +8,12 @@
|
||||
},
|
||||
"contributionscores": "Biedraaghuuegdjes",
|
||||
"contributionscores-desc": "Guuef 'n euverzich van [[Special:ContributionScores|gebroekers mit de meiste biedraag]] inne wiki.",
|
||||
"contributionscores-info": "Huuegdjes waere es vólg beraekendj:\n* Ein (1) pöntj veur edere apaart bewèrkdje pazjena\n* Wórtel van (totaal aantal gemaakdje bewèrkinger) - (totaal aantal apaarte pazjena's) × 2\nI huuegdjes die op dees wies beraekendj waere wäög divers bewèrkingsgedraag zwaorder es bewèrkingsvolume. In feite mèt dees huuegdje veurnamelik 't aantal apaarte pazjena's die zeen bewèrk, wiele 'n grót aantal bewèrkinger waal in ach wuuertj genaome, mit de aannaam det 't 'ne pazjena van 'n huuegere kwaliteit is.",
|
||||
"contributionscores-info": "Dees score mètj veurnamelik 't aantaal unieke pagina's det is bewirk, dewiel e groeat aantaal bewirkinge waal in ach weurt genómme.",
|
||||
"contributionscores-top": "(Top $1)",
|
||||
"contributionscores-days": "{{PLURAL:$1|Lesten daag|Leste $1 daag}}",
|
||||
"contributionscores-allrevisions": "Alle verzies",
|
||||
"contributionscores-score": "Puntje",
|
||||
"contributionscores-rank": "Rang",
|
||||
"contributionscores-pages": "Pagina's",
|
||||
"contributionscores-changes": "Bewèrkinger",
|
||||
"contributionscores-username": "Gebroeker",
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
"authors": [
|
||||
"Nghtwlkr",
|
||||
"Helland",
|
||||
"Danmichaelo"
|
||||
"Danmichaelo",
|
||||
"Jon Harald Søby"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Bidragspoeng",
|
||||
|
||||
8
i18n/pnb.json
Normal file
8
i18n/pnb.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"BukhariSaeed"
|
||||
]
|
||||
},
|
||||
"contributionscores-username": "ورتن آلے دا ناں"
|
||||
}
|
||||
@@ -1,11 +1,14 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ahmed-Najib-Biabani-Ibrahimkhel"
|
||||
"Ahmed-Najib-Biabani-Ibrahimkhel",
|
||||
"Baloch Khan"
|
||||
]
|
||||
},
|
||||
"contributionscores-days": "وروستۍ {{PLURAL:$1|ورځ|$1 ورځې}}",
|
||||
"contributionscores-allrevisions": "هر وخت",
|
||||
"contributionscores-score": "سکور (ګولونه)",
|
||||
"contributionscores-rank": "رتبه",
|
||||
"contributionscores-pages": "مخونه",
|
||||
"contributionscores-changes": "بدلونونه",
|
||||
"contributionscores-username": "کارن-نوم",
|
||||
|
||||
@@ -7,14 +7,15 @@
|
||||
"Giro720",
|
||||
"Luckas",
|
||||
"HenriqueCrang",
|
||||
"!Silent"
|
||||
"!Silent",
|
||||
"Opraco"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Pontuação de contribuições",
|
||||
"contributionscores-desc": "Inquire a base de dados wiki sobre os mais altos [[Special:ContributionScores|volumes de contribuição dos utilizadores]]",
|
||||
"contributionscores-info": "A pontuação mede, principalmente, as páginas únicas editadas, tendo em consideração o alto volume de edições.",
|
||||
"contributionscores-top": "(Top $1)",
|
||||
"contributionscores-days": "Últimos {{PLURAL:$1|día|$1 días}}",
|
||||
"contributionscores-top": "(top $1)",
|
||||
"contributionscores-days": "{{PLURAL:$1|Último dia|Últimos $1 dias}}",
|
||||
"contributionscores-allrevisions": "Desde sempre",
|
||||
"contributionscores-score": "Pontuação",
|
||||
"contributionscores-rank": "Classificação",
|
||||
|
||||
@@ -6,12 +6,13 @@
|
||||
"Lockal",
|
||||
"Okras",
|
||||
"Ole Yves",
|
||||
"Александр Сигачёв"
|
||||
"Александр Сигачёв",
|
||||
"Kaganer"
|
||||
]
|
||||
},
|
||||
"contributionscores": "Оценка вклада",
|
||||
"contributionscores-desc": "Определяет из базы данных [[Special:ContributionScores|участников с наибольшим числом правок]]",
|
||||
"contributionscores-info": "Оценка рассчитывается в первую очередь по количеству отредактированных уникальных страниц, с учётом большего объёма редактирования.",
|
||||
"contributionscores-info": "Оценка рассчитывается в первую очередь по количеству отредактированных уникальных страниц, с учётом величины сделанных изменений.",
|
||||
"contributionscores-top": "(лучшие $1)",
|
||||
"contributionscores-days": "{{PLURAL:$1|1=Последний день|Последний $1 день|Последние $1 дня|Последние $1 дней}}",
|
||||
"contributionscores-allrevisions": "За всё время",
|
||||
|
||||
9
i18n/sd.json
Normal file
9
i18n/sd.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Mehtab ahmed"
|
||||
]
|
||||
},
|
||||
"contributionscores-pages": "صفحا",
|
||||
"contributionscores-changes": "تبديليون"
|
||||
}
|
||||
@@ -4,13 +4,16 @@
|
||||
"Milicevic01",
|
||||
"Rancher",
|
||||
"Sasa Stefanovic",
|
||||
"Михајло Анђелковић"
|
||||
"Михајло Анђелковић",
|
||||
"Zoranzoki21",
|
||||
"Acamicamacaraca"
|
||||
]
|
||||
},
|
||||
"contributionscores-top": "(првих $1)",
|
||||
"contributionscores-days": "{{PLURAL:$1|1=Последњег дана|Последњих $1 дана}}",
|
||||
"contributionscores-allrevisions": "Свих времена",
|
||||
"contributionscores-score": "Оцена",
|
||||
"contributionscores-score": "Резултат",
|
||||
"contributionscores-rank": "Ранг",
|
||||
"contributionscores-pages": "Странице",
|
||||
"contributionscores-changes": "Измене",
|
||||
"contributionscores-username": "Корисничко име",
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Woraponboonkerd"
|
||||
"Woraponboonkerd",
|
||||
"Ans"
|
||||
]
|
||||
},
|
||||
"contributionscores": "คะแนนการแก้ไข",
|
||||
@@ -9,6 +10,7 @@
|
||||
"contributionscores-info": "วิธีการคิดคะแนนเป็นดังต่อไปนี้:\n* หนึ่ง (1) คะแนนต่อจำนวนหน้าที่เข้าร่วมแก้ไข (ชื่อของหน้าไม่ซ้ำกัน)\n* รากที่สองของจำนวนการแก้ไขทั้งหมด - จำนวนหน้าทั้งหมดที่ร่วมแก้ไข * 2\nคะแนนจะถูกคิดโดยให้น้ำหนักของการแก้ไขที่หลากหลายมากกว่าจำนวนการแก้ไข\nโดยทั่วไป คะแนนนี้ชี้วัดถึงจำนวนหน้าต่างๆ ที่เข้าร่วมแก้ไข โดยคำนึงถึงจำนวนการแก้ไขทั้งหมดด้วย จึงคาดการณ์ได้ว่าจะทำให้มีหน้าที่มีคุณภาพสูงขึ้น",
|
||||
"contributionscores-days": "$1 {{PLURAL:$1|วัน|วัน}} ที่แล้ว",
|
||||
"contributionscores-score": "คะแนน",
|
||||
"contributionscores-rank": "การจัดอันดับ",
|
||||
"contributionscores-pages": "จำนวนหน้า",
|
||||
"contributionscores-changes": "จำนวนการเปลี่ยนแปลง",
|
||||
"contributionscores-username": "ชื่อผู้ใช้",
|
||||
|
||||
3293
package-lock.json
generated
Normal file
3293
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
package.json
23
package.json
@@ -1,14 +1,13 @@
|
||||
{
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "grunt test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt": "0.4.5",
|
||||
"grunt-cli": "0.1.13",
|
||||
"grunt-contrib-jshint": "0.11.3",
|
||||
"grunt-jscs": "2.5.0",
|
||||
"grunt-jsonlint": "1.0.7",
|
||||
"grunt-banana-checker": "0.4.0"
|
||||
}
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "grunt test"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt": "1.4.0",
|
||||
"grunt-banana-checker": "0.4.0",
|
||||
"grunt-contrib-jshint": "0.11.3",
|
||||
"grunt-jscs": "2.5.0",
|
||||
"grunt-jsonlint": "1.0.7"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user