-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "vim-node-rpc",
"version": "0.1.34",
"description": "A transform module to make vim support RPC request as neovim",
"main": "lib/index.js",
"bin": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "node lib/index",
"clean": "rimraf lib",
"lint": "tslint -c tslint.json -p .",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch true --sourceMap",
"prepare": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neoclide/vim-node-rpc.git"
},
"keywords": [
"vim",
"neovim",
"node"
],
"author": "Qiming Zhao <chemzqm@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neoclide/vim-node-rpc/issues"
},
"homepage": "https://github.com/neoclide/vim-node-rpc#readme",
"dependencies": {
"log4js": "^4.3.1",
"msgpack-lite": "^0.1.26",
"tslib": "^1.9.3",
"uuid": "^3.3"
},
"devDependencies": {
"@chemzqm/neovim": "^5.1.7",
"@chemzqm/tsconfig": "^0.0.3",
"@chemzqm/tslint-config": "^1.0.18",
"@types/msgpack-lite": "^0.1.6",
"@types/node": "^12.0.5",
"neovim": "^4.5.0",
"rimraf": "^2.6.3",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}