slap/package.json
Terence Sun 7d2bfc316e fix(editor): Added support for pipes
Builds off of 59216ca2d2 to implement accepting
input from the unix pipe (eg. `netstat | slap`). Currently, the editor only
supports pipe input if there are no arguments (by choice to mimic behavior of
running `netstat | less some_file.txt`).
2015-12-08 02:12:30 -05:00

43 lines
975 B
JSON

{
"name": "slap",
"version": "0.1.56",
"description": "Sublime-like terminal-based text editor",
"preferGlobal": true,
"main": "lib/cli.js",
"bin": {
"slap": "./slap.js"
},
"scripts": {
"start": "./slap.js",
"debug": "node-debug ./slap.js",
"test": "spec/index.js",
"cover": "istanbul cover spec/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/slap-editor/slap.git"
},
"bugs": "https://github.com/slap-editor/slap/issues",
"author": "",
"license": "MIT",
"dependencies": {
"base-widget": "1.0.9",
"blessed": "0.1.81",
"bluebird": "3.0.6",
"editor-widget": "1.1.0",
"lodash": "3.10.1",
"mkdirp": "0.5.1",
"node-clap": "0.0.5",
"rc": "1.1.5",
"slap-util": "1.0.5",
"ttys": "0.0.3",
"update-notifier": "0.6.0"
},
"devDependencies": {
"get-random-port": "0.0.1",
"istanbul": "0.4.1",
"node-inspector": "0.12.5",
"tape": "4.2.2"
}
}