slap/package.json

49 lines
1.1 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-03-28 05:52:50 +03:00
"version": "0.1.16",
2014-12-21 08:52:13 +03:00
"description": "Sublime-like terminal-based text editor",
"preferGlobal": true,
2014-04-21 22:20:48 +04:00
"main": "index.js",
2014-04-26 21:07:26 +04:00
"bin": {
2014-04-28 12:48:47 +04:00
"slap": "./index.js"
2014-04-26 21:07:26 +04:00
},
2014-04-21 22:20:48 +04:00
"scripts": {
2014-08-07 07:20:03 +04:00
"start": "./index.js",
2015-01-30 19:50:06 +03:00
"cover": "istanbul cover ./index.js",
"debug": "node-debug ./index.js",
2014-04-30 10:44:23 +04:00
"test": "test/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": {
"blessed": "0.0.49",
2014-10-20 11:31:02 +04:00
"bluebird": "^2.3.6",
2014-05-05 11:50:46 +04:00
"cheerio": "^0.15.0",
"highlight.js": "^8.2.0",
"iconv-lite": "^0.4.4",
2014-05-05 11:50:46 +04:00
"lazy.js": "^0.3.2",
"lodash": "^2.4.1",
"longjohn": "^0.2.4",
"mkdirp": "^0.5.0",
2015-03-19 06:44:39 +03:00
"rc": "^1.0.0",
2015-03-28 05:51:56 +03:00
"slap-clipboard-plugin": "^0.0.6",
2015-02-05 22:15:51 +03:00
"text-buffer": "^4.1.0",
2014-05-30 15:18:42 +04:00
"traverse": "^0.6.6",
"update-notifier": "^0.3.0",
"winston": "^0.7.3",
2014-05-05 11:50:46 +04:00
"xtend": "^3.0.0"
2014-04-30 10:44:23 +04:00
},
"devDependencies": {
2015-01-30 19:50:06 +03:00
"get-random-port": "0.0.1",
"istanbul": "^0.3.5",
"node-inspector": "^0.8.3",
2015-02-22 04:00:20 +03:00
"tape": "^2.12.3",
"through2": "^0.6.3"
2014-04-21 22:20:48 +04:00
}
}