forked from yuki-yano/fzf-preview.vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.69 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "coc-fzf-preview",
"version": "2.0.12",
"description": "The plugin that powerfully integrates fzf and (Neo)vim. It is also possible to integrate with coc.nvim.",
"author": "yuki-yano",
"license": "MIT",
"repository": {
"url": "[email protected]:yuki-yano/fzf-preview.vim"
},
"main": "./lib/coc.js",
"files": [
"lib/coc.js",
"autoload",
"plugin",
"bin"
],
"keywords": [
"coc.nvim",
"fzf"
],
"engines": {
"coc": "^0.0.80"
},
"activationEvents": [
"*"
],
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:remote": "TS_NODE_PROJECT=\"tsconfig.webpack-jest.json\" yarn run webpack --config webpack.remote.ts",
"build:coc": "TS_NODE_PROJECT=\"tsconfig.webpack-jest.json\" yarn run webpack --config webpack.coc.ts",
"build:rpc": "TS_NODE_PROJECT=\"tsconfig.webpack-jest.json\" yarn run webpack --config webpack.rpc.ts",
"dev": "npm-run-all --parallel dev:*",
"dev:remote": "TS_NODE_PROJECT=\"tsconfig.webpack-jest.json\" yarn run webpack --watch --config webpack.remote.ts",
"dev:coc": "TS_NODE_PROJECT=\"tsconfig.webpack-jest.json\" yarn run webpack --watch --config webpack.coc.ts",
"dev:rpc": "TS_NODE_PROJECT=\"tsconfig.webpack-jest.json\" yarn run webpack --watch --config webpack.rpc.ts",
"release-build:remote": "yarn run clean && yarn run build:remote --mode=production",
"release-build:coc": "yarn run clean && yarn run build:coc --mode=production",
"release-build:rpc": "yarn run clean && yarn run build:rpc --mode=production",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts --fix src",
"lint:watch": "esw --watch --color --clear --ext .ts src",
"test": "jest",
"test:watch": "jest --watch",
"cli": "ts-node --files -r tsconfig-paths/register",
"clean": "rimraf lib rplugin/node/fzf-preview.vim/index.js",
"print-version": "cat package.json | yarn run --silent json version"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
"coc.nvim": "^0.0.80",
"immer": "^8.0.0",
"lodash": "^4.17.20",
"neovim": "^4.9.0",
"printf": "^0.6.0",
"redux": "^4.0.5",
"strip-ansi": "^6.0.0",
"type-fest": "^0.20.2",
"uuid": "^8.3.1",
"vscode-jsonrpc": "^6.0.0",
"vscode-languageserver-types": "^3.16.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@jest/types": "^26.6.2",
"@types/eslint": "^7.2.6",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.167",
"@types/node": "^14.14.20",
"@types/prettier": "^2.1.6",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"@types/webpack": "^4.41.25",
"@types/webpack-merge": "^4.1.5",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"can-npm-publish": "^1.3.3",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"json": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-merge": "^5.7.3"
}
}