This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
2021-04-02 02:24:13 +03:00

48 lines
1.2 KiB
JSON

{
"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 <kevin@mrkmg.com> (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"
]
}