/usr/lib/nodejs/gettext-parser/package.json is in node-gettext-parser 1.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 35 36 37 38 39 40 41 42 | {
"name": "gettext-parser",
"description": "Parse and compile gettext po and mo files to/from json, nothing more, nothing less",
"version": "1.2.2",
"author": "Andris Reinman",
"contributors": [
{
"name": "Sam Hauglustaine"
}
],
"homepage": "http://github.com/smhg/gettext-parser",
"repository": {
"type": "git",
"url": "http://github.com/smhg/gettext-parser.git"
},
"scripts": {
"lint": "eslint lib/*.js test/*.js index.js",
"test": "mocha",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"main": "./index",
"license": "MIT",
"dependencies": {
"encoding": "0.1.12"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.13.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"mocha": "3.2.0"
},
"keywords": [
"i18n",
"l10n",
"gettext",
"mo",
"po"
]
}
|