pig-latinizer
Version:
Translates English text to Pig Latin, with proper handling of capitalization, punctuation, and hyphenated phrases
50 lines (43 loc) • 1.7 kB
JSON
{
"name": "pig-latinizer",
"version": "1.0.6",
"description": "Translates English text to Pig Latin, with proper handling of capitalization, punctuation, and hyphenated phrases",
"keywords": ["pig", "latin", "piglatin", "pig-latin", "translate", "translator", "igpay", "atinlay", "bacon", "aconbay"],
"homepage": "https://github.com/jakshin/pig-latinizer",
"bugs": "https://github.com/jakshin/pig-latinizer/issues",
"repository": {
"type": "git",
"url": "https://github.com/jakshin/pig-latinizer.git"
},
"license": "MIT",
"author": "Jason Jackson",
"main": "lib/pigLatin.js",
"typings": "types/pigLatin.d.ts",
"files": [
"lib/",
"types/"
],
"scripts": {
"build": "rm -rf lib && rm -rf types && node_modules/.bin/tsc && ./format_transpiled_code.sh",
"clean": "rm -rf lib && rm -rf types",
"coveralls": "cat \"`find coverage -name lcovonly | sort -r | head -n 1`\" | coveralls",
"lint": "yarn run lint-ts; _ts=$?; yarn run lint-es6; _es6=$?; ((( $_ts > $_es6 )) && exit $_ts || exit $_es6)",
"lint-es6": "node_modules/.bin/eslint src",
"lint-ts": "node_modules/.bin/tslint -c tslint.json -p tsconfig.json",
"unit": "node_modules/.bin/karma start --coverage",
"unit-debug": "node_modules/.bin/karma start --browsers Chrome --single-run false"
},
"devDependencies": {
"coveralls": "3.0.4",
"eslint": "6.2.1",
"jasmine-core": "3.4.0",
"karma": "4.2.0",
"karma-chrome-launcher": "3.0.0",
"karma-jasmine": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-typescript-es6-transform": "4.1.1",
"karma-typescript": "4.1.1",
"tslint": "5.18.0",
"typescript": "3.5.3"
}
}