{ "name": "external-editor", "version": "1.1.1", "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": { "extend": "^3.0.0", "spawn-sync": "^1.0.15", "tmp": "^0.0.29" }, "devDependencies": { "chai": "^3.5.0", "coffee-script": "^1.10.0", "coffeelint": "^1.14.2", "mocha": "^2.5.3" }, "files": [ "main", "example_sync.js", "example_async.js" ] }