asciidoctor-gettext
Version:
gettext/po string extraction tool for asciidoc documents
84 lines (83 loc) • 1.96 kB
JSON
{
"name": "asciidoctor-gettext",
"version": "1.3.1",
"description": "gettext/po string extraction tool for asciidoc documents",
"keywords": [
"adoc",
"asciidoc",
"asciidoctor",
"asciidoctor.js",
"gettext",
"i18n",
"internationalization",
"localization",
"po",
"po4a",
"translation"
],
"homepage": "https://github.com/martijnthe/asciidoctor-gettext",
"repository": "github:martijnthe/asciidoctor-gettext",
"main": "dist/index.js",
"author": "post@martijnthe.nl",
"license": "MIT",
"bin": {
"asciidoctor-gettext": "bin/asciidoctor-gettext.js"
},
"dependencies": {
"asciidoctor.js": "1.5.7-rc.1",
"commander": "^2.15.1",
"gettext-parser": "^2.0.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^23.3.5",
"@types/node": "^10.12.0",
"@types/tmp": "^0.0.33",
"coveralls": "^3.0.0",
"jest": "^23.6.0",
"nyc": "^13.1.0",
"tmp": "^0.0.33",
"ts-jest": "^23.10.4",
"tslint": "^5.9.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.3"
},
"files": [
"bin/*",
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"coveralls:upload": "nyc report --reporter=lcov && cat ./coverage/lcov.info | coveralls",
"lint": "tslint -p .",
"prepare": "tsc",
"test": "rm -rf .nyc_output/*.json && jest --collectCoverage"
},
"jest": {
"coverageReporters": ["json"],
"coverageDirectory": ".nyc_output",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"diagnostics": true,
"tsConfig": "tsconfig-ts-jest.json"
}
}
}
}