Kaido Kert | f585e26 | 2020-06-08 11:42:28 -0700 | [diff] [blame] | 1 | { |
| 2 | "author": "Kevin Gravier <kevin@mrkmg.com> (https://mrkmg.com)", |
| 3 | "bugs": { |
| 4 | "url": "https://github.com/mrkmg/node-external-editor/issues" |
| 5 | }, |
| 6 | "config": { |
| 7 | "ndt": { |
| 8 | "versions": [ |
| 9 | "major" |
| 10 | ] |
| 11 | } |
| 12 | }, |
| 13 | "dependencies": { |
| 14 | "chardet": "^0.7.0", |
| 15 | "iconv-lite": "^0.4.24", |
| 16 | "tmp": "^0.0.33" |
| 17 | }, |
| 18 | "description": "Edit a string with the users preferred text editor using $VISUAL or $ENVIRONMENT", |
| 19 | "devDependencies": { |
| 20 | "@types/chai": "^4.1.4", |
| 21 | "@types/chardet": "^0.5.0", |
| 22 | "@types/mocha": "^5.2.5", |
| 23 | "@types/node": "^10.14.12", |
| 24 | "@types/tmp": "0.0.33", |
| 25 | "chai": "^4.0.0", |
| 26 | "es6-shim": "^0.35.3", |
| 27 | "mocha": "^5.2.0", |
| 28 | "ts-node": "^7.0.1", |
| 29 | "tslint": "^5.18.0", |
| 30 | "typescript": "^3.5.2" |
| 31 | }, |
| 32 | "engines": { |
| 33 | "node": ">=4" |
| 34 | }, |
| 35 | "files": [ |
| 36 | "main", |
| 37 | "example_sync.js", |
| 38 | "example_async.js" |
| 39 | ], |
| 40 | "homepage": "https://github.com/mrkmg/node-external-editor#readme", |
| 41 | "keywords": [ |
| 42 | "editor", |
| 43 | "external", |
| 44 | "user", |
| 45 | "visual" |
| 46 | ], |
| 47 | "license": "MIT", |
| 48 | "main": "main/index.js", |
| 49 | "name": "external-editor", |
| 50 | "repository": { |
| 51 | "type": "git", |
| 52 | "url": "git+https://github.com/mrkmg/node-external-editor.git" |
| 53 | }, |
| 54 | "scripts": { |
| 55 | "compile": "tsc -p tsconfig.json", |
| 56 | "lint": "tslint './src/**/*.ts' './test/**/*.ts'", |
| 57 | "test": "mocha --recursive --require ts-node/register --timeout 10000 ./test/spec 'test/spec/**/*.ts'" |
| 58 | }, |
| 59 | "types": "main/index.d.ts", |
| 60 | "version": "3.1.0" |
| 61 | } |