slap/package.json

46 lines
1.0 KiB
JSON
Raw Normal View History

2014-04-21 22:20:48 +04:00
{
2014-04-28 12:48:47 +04:00
"name": "slap",
2015-10-01 12:07:36 +03:00
"version": "0.1.51",
2014-12-21 08:52:13 +03:00
"description": "Sublime-like terminal-based text editor",
"preferGlobal": true,
2015-03-31 03:14:03 +03:00
"main": "lib/cli.js",
2014-04-26 21:07:26 +04:00
"bin": {
2015-06-03 05:14:05 +03:00
"slap": "./slap.js"
2014-04-26 21:07:26 +04:00
},
2014-04-21 22:20:48 +04:00
"scripts": {
2015-06-03 05:14:05 +03:00
"start": "./slap.js",
"debug": "node-debug ./slap.js",
"test": "spec/index.js",
"cover": "istanbul cover spec/index.js"
2014-04-21 22:20:48 +04:00
},
"repository": {
"type": "git",
"url": "https://github.com/slap-editor/slap.git"
2014-04-21 22:20:48 +04:00
},
"bugs": "https://github.com/slap-editor/slap/issues",
2014-04-21 22:20:48 +04:00
"author": "",
"license": "MIT",
"dependencies": {
"base-widget": "^1.0.6",
"blessed": "^0.1.15",
2014-10-20 11:31:02 +04:00
"bluebird": "^2.3.6",
"editor-widget": "^1.0.12",
2015-06-04 05:26:38 +03:00
"lodash": "^3.9.3",
"mkdirp": "^0.5.0",
2015-06-03 05:14:05 +03:00
"node-clap": "^0.0.5",
2015-03-19 06:44:39 +03:00
"rc": "^1.0.0",
"slap-clipboard-plugin": "^0.0.13",
2015-10-01 11:30:09 +03:00
"slap-util": "^1.0.5",
2015-06-27 04:28:29 +03:00
"update-notifier": "^0.5.0"
2014-04-30 10:44:23 +04:00
},
"devDependencies": {
"get-random-port": "0.0.1",
2015-01-30 19:50:06 +03:00
"istanbul": "^0.3.5",
2015-09-23 23:27:04 +03:00
"node-inspector": "^0.12.3",
"tape": "^2.12.3"
},
"engines": {
2015-06-26 07:43:39 +03:00
"node": "<0.11 >=0.12.5"
2014-04-21 22:20:48 +04:00
}
}