ex-mode/package.json
Brian Vanderbusch ac29b24c23 polyfill Promise with bluebird
fixes: Uncaught TypeError: Promise.defer is not a function - adds bluebird
2016-08-02 09:20:51 -07:00

40 lines
818 B
JSON

{
"name": "ex-mode",
"main": "./lib/ex-mode",
"version": "0.10.1",
"description": "Ex for Atom's vim-mode",
"activationCommands": {
"atom-workspace": "ex-mode:open"
},
"repository": "https://github.com/lloeki/ex-mode",
"license": "MIT",
"engines": {
"atom": ">=0.200.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.4",
"bluebird": "^3.4.1",
"event-kit": "^0.7.2",
"fs-plus": "^2.2.8",
"space-pen": "^5.1.1",
"underscore-plus": "1.x"
},
"consumedServices": {
"vim-mode": {
"versions": {
"^0.1.0": "consumeVim"
}
}
},
"providedServices": {
"ex-mode": {
"description": "Ex commands",
"versions": {
"0.20.0": "provideEx"
}
}
},
"devDependencies": {
"node-uuid": "^1.4.2"
}
}