├── .gitignore ├── LICENSE ├── README.md └── translate.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevCui/translate-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevCui/translate-cli/HEAD/README.md -------------------------------------------------------------------------------- /translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevCui/translate-cli/HEAD/translate.js --------------------------------------------------------------------------------