-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 967 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 967 Bytes
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
{
"name": "nvim-test-js",
"version": "0.0.5",
"description": "A harness for testing vim via javascript",
"main": "dist/index",
"types": "dist/index",
"dependencies": {
"neovim": "^4.5.0"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.7",
"mocha": "^6.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
},
"files": [
"dist",
"src"
],
"scripts": {
"prepublish": "rm -rf ./dist && tsc && cp src/vimrc.vim dist/vimrc.vim",
"test": "mocha --require ts-node/register --exit test/**/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kizza/nvim-test-js.git"
},
"keywords": [
"test",
"vim",
"javascript",
"neovim",
"nvim"
],
"author": "kizza (Keiran O'Leary)",
"license": "ISC",
"bugs": {
"url": "https://github.com/kizza/nvim-test-js/issues"
},
"homepage": "https://github.com/kizza/nvim-test-js#readme"
}