slap/package.json

55 lines
1.3 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-05-15 17:49:29 +03:00
"version": "0.1.28",
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": {
"slap": "./bin/slap.js"
2014-04-26 21:07:26 +04:00
},
2014-04-21 22:20:48 +04:00
"scripts": {
2015-06-03 02:46:56 +03:00
"start": "./bin/slap.js",
"debug": "node-debug ./bin/slap.js",
2015-03-31 03:14:03 +03:00
"test": "test/index.js",
"cover": "istanbul cover 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": {
2015-05-02 05:45:11 +03:00
"blessed": "0.1.56",
2014-10-20 11:31:02 +04:00
"bluebird": "^2.3.6",
2014-05-05 11:50:46 +04:00
"cheerio": "^0.15.0",
"es6-set": "^0.1.1",
"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-04-22 02:46:35 +03:00
"node-clap": "^0.0.4",
2015-03-19 06:44:39 +03:00
"rc": "^1.0.0",
2015-05-03 22:17:39 +03:00
"slap-clipboard-plugin": "^0.0.10",
"text-buffer": "^6.1.3",
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",
2015-04-30 06:18:05 +03:00
"node-inspector": "^0.10.0",
2015-03-31 03:14:03 +03:00
"npm": "^2.7.4",
2015-02-22 04:00:20 +03:00
"tape": "^2.12.3",
"through2": "^0.6.3"
},
"engines": {
"node": "<0.12"
2014-04-21 22:20:48 +04:00
}
}