UNPKG

markdown-translator

Version:

Directly translate markdown file using Azure Text Translate API

59 lines (58 loc) 1.37 kB
{ "name": "markdown-translator", "version": "0.4.5", "description": "Directly translate markdown file using Azure Text Translate API", "main": "index.js", "scripts": { "test": "jest", "dist:mac": "pkg package.json --targets node8-macos-x64", "dist:win": "pkg package.json --targets node8-win-x64" }, "bin": { "md-translator": "./cli.js" }, "pkg": { "assets": "config.json" }, "dependencies": { "commander": "^7.2.0", "lodash.chunk": "^4.2.0", "lodash.flatten": "^4.4.0", "lodash.merge": "^4.6.1", "remark": "^13.0.0", "request": "^2.88.0", "unified-stream": "^1.0.6", "uuid": "^8.3.2" }, "keywords": [ "Azure", "Markdown", "Translate", "CLI" ], "author": "Menthays <tillohao@gmail.com>", "repository": { "type": "git", "url": "git+https://github.com/menthays/markdown-translator.git" }, "homepage": "https://github.com/menthays/markdown-translator#readme", "bugs": { "url": "https://github.com/menthays/markdown-translator/issues" }, "license": "MIT", "devDependencies": { "husky": "^6.0.0", "jest": "^26.6.3", "lint-staged": "^11.0.0", "pkg": "^5.1.0", "prettier": "^2.2.1" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx}": "prettier --write" } }