package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "external-editor",
  3. "version": "3.1.0",
  4. "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT",
  5. "main": "main/index.js",
  6. "types": "main/index.d.ts",
  7. "scripts": {
  8. "test": "mocha --recursive --require ts-node/register --timeout 10000 ./test/spec 'test/spec/**/*.ts'",
  9. "compile": "tsc -p tsconfig.json",
  10. "lint": "tslint './src/**/*.ts' './test/**/*.ts'"
  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.7.0",
  30. "iconv-lite": "^0.4.24",
  31. "tmp": "^0.0.33"
  32. },
  33. "engines": {
  34. "node": ">=4"
  35. },
  36. "devDependencies": {
  37. "@types/chai": "^4.1.4",
  38. "@types/chardet": "^0.5.0",
  39. "@types/mocha": "^5.2.5",
  40. "@types/node": "^10.14.12",
  41. "@types/tmp": "0.0.33",
  42. "chai": "^4.0.0",
  43. "es6-shim": "^0.35.3",
  44. "mocha": "^5.2.0",
  45. "ts-node": "^7.0.1",
  46. "tslint": "^5.18.0",
  47. "typescript": "^3.5.2"
  48. },
  49. "files": [
  50. "main",
  51. "example_sync.js",
  52. "example_async.js"
  53. ],
  54. "config": {
  55. "ndt": {
  56. "versions": [
  57. "major"
  58. ]
  59. }
  60. }
  61. }