package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "external-editor",
  3. "version": "2.2.0",
  4. "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT",
  5. "main": "main/index.js",
  6. "scripts": {
  7. "test": "npm run lint && npm run unit",
  8. "unit": "mocha --recursive --compilers coffee:coffee-script/register --timeout 10000 ./test/spec",
  9. "compile": "coffee --compile --output main/ src/",
  10. "lint": "coffeelint -f .coffeelint.json src"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/mrkmg/node-external-editor.git"
  15. },
  16. "keywords": [
  17. "editor",
  18. "external",
  19. "user",
  20. "visual"
  21. ],
  22. "author": "Kevin Gravier <kevin@mrkmg.com> (https://mrkmg.com)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/mrkmg/node-external-editor/issues"
  26. },
  27. "homepage": "https://github.com/mrkmg/node-external-editor#readme",
  28. "dependencies": {
  29. "chardet": "^0.4.0",
  30. "iconv-lite": "^0.4.17",
  31. "tmp": "^0.0.33"
  32. },
  33. "engines": {
  34. "node": ">=0.12"
  35. },
  36. "devDependencies": {
  37. "chai": "^4.0.0",
  38. "coffee-script": "^1.10.0",
  39. "coffeelint": "^1.14.2",
  40. "mocha": "^3.2.0"
  41. },
  42. "files": [
  43. "main",
  44. "example_sync.js",
  45. "example_async.js"
  46. ]
  47. }