forked from neovim/node-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "promised-neovim-client",
"description": "Promised Neovim client library for modern JavaScript",
"version": "2.0.2",
"homepage": "https://github.com/neovim/node-client",
"authors": [
{
"name": "Thiago de Arruda",
"email": "[email protected]"
},
{
"name": "rhysd",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/rhysd/promised-neovim-client"
},
"bugs": {
"url": "https://github.com/rhysd/promised-neovim-client/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/rhysd/promised-neovim-client/blob/master/LICENSE-MIT"
}
],
"main": "./index",
"engines": {
"node": ">=4.4"
},
"dependencies": {
"lodash": "^4.17.4",
"msgpack5rpc": "^1.1.0",
"traverse": "^0.6.6"
},
"devDependencies": {
"@types/node": "^7.0.18",
"eslint": "^3.19.0",
"eslint-plugin-promise": "^3.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"nodemon": "^1.11.0",
"typescript": "^2.3.2",
"which": "^1.2.14"
},
"scripts": {
"mocha": "mocha test/",
"tsc": "tsc --target es2015 --module commonjs --noImplicitAny --noEmit test/typescript-test.ts",
"test": "npm run eslint && npm run mocha && npm run tsc",
"coverage": "istanbul cover _mocha -- test/",
"eslint": "eslint index.js"
},
"keywords": [
"neovim",
"neovim-client",
"nvim",
"nvim-client",
"promise",
"vim"
]
}