Two workflows have been added,
* PHP build - Runs tests on version 7.2, 7.3, also runs phpcs
* Node.js build - Runs tests on version 8.x, 10.x, 12.x, also
runs ESLint
Bug: T218639
43 lines
934 B
JSON
43 lines
934 B
JSON
{
|
|
"name": "@wikimedia/language-data",
|
|
"version": "0.1.2",
|
|
"description": "Language data and utilities",
|
|
"homepage": "https://github.com/wikimedia/language-data",
|
|
"keywords": [
|
|
"cldr",
|
|
"internationalization",
|
|
"localization",
|
|
"l10n"
|
|
],
|
|
"author": {
|
|
"name": "Santhosh Thottingal",
|
|
"email": "santhosh.thottingal@gmail.com"
|
|
},
|
|
"contributors": [
|
|
"Amir Aharoni",
|
|
"Niklas Laxström",
|
|
"Santhosh Thottingal"
|
|
],
|
|
"devDependencies": {
|
|
"assert": "^2.0.0",
|
|
"eslint": "^6.2.0",
|
|
"eslint-config-wikimedia": "0.14.0",
|
|
"mocha": "^6.2.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/wikimedia/language-data.git"
|
|
},
|
|
"bugs": {
|
|
"url": "http://github.com/wikimedia/language-data/issues"
|
|
},
|
|
"engine": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"license": "GPL-2.0-or-later",
|
|
"scripts": {
|
|
"test": "mocha tests/js/*.js",
|
|
"lint": "eslint src/*.js"
|
|
}
|
|
}
|