{ "name": "external-editor", "version": "2.2.0", "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", "main": "main/index.js", "scripts": { "test": "npm run lint && npm run unit", "unit": "mocha --recursive --compilers coffee:coffee-script/register --timeout 10000 ./test/spec", "compile": "coffee --compile --output main/ src/", "lint": "coffeelint -f .coffeelint.json src" }, "repository": { "type": "git", "url": "git+https://github.com/mrkmg/node-external-editor.git" }, "keywords": [ "editor", "external", "user", "visual" ], "author": "Kevin Gravier (https://mrkmg.com)", "license": "MIT", "bugs": { "url": "https://github.com/mrkmg/node-external-editor/issues" }, "homepage": "https://github.com/mrkmg/node-external-editor#readme", "dependencies": { "chardet": "^0.4.0", "iconv-lite": "^0.4.17", "tmp": "^0.0.33" }, "engines": { "node": ">=0.12" }, "devDependencies": { "chai": "^4.0.0", "coffee-script": "^1.10.0", "coffeelint": "^1.14.2", "mocha": "^3.2.0" }, "files": [ "main", "example_sync.js", "example_async.js" ] }