hubot-vimexec
Version:
A hubot script that executes Vim.
57 lines (56 loc) • 1.47 kB
JSON
{
"name": "hubot-vimexec",
"description": "A hubot script that executes Vim.",
"version": "0.1.0",
"author": "thinca <thinca+npm@gmail.com>",
"bugs": {
"url": "https://github.com/thinca/hubot-vimexec/issues"
},
"dependencies": {
"mkfifo": "^2.1.0",
"node-pty": "^0.9.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/hubot": "^3.3.0",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"hubot-test-helper": "^1.9.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"files": [
"scripts",
"vim-scripts"
],
"homepage": "https://github.com/thinca/hubot-vimexec",
"keywords": [
"hubot",
"hubot-scripts",
"repl",
"vim"
],
"license": "Zlib",
"main": "scripts/index",
"peerDependencies": {
"hubot": "3.x"
},
"repository": {
"type": "git",
"url": "https://github.com/thinca/hubot-vimexec.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint 'src/**/*.ts' 'test/**/*.test.ts'",
"test": "nyc --reporter=lcovonly --reporter=text mocha",
"version": "sed -i -e \"s/^## Unreleased$/## v$(jq -r .version package.json) ($(date '+%Y-%m-%d'))/\" CHANGELOG.md && git add CHANGELOG.md"
}
}