-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
{
"name": "coc-docker",
"version": "1.0.2",
"description": "docker extension for coc",
"author": "[email protected]",
"license": "MIT",
"main": "lib/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/josa42/coc-docker.git"
},
"engines": {
"coc": "^0.0.80"
},
"keywords": [
"coc.nvim",
"languageserver",
"docker"
],
"scripts": {
"clean": "rimraf lib",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc --watch -p tsconfig.json",
"prepare": "npm run clean && npm run build",
"lint": "eslint . --ext .ts,.js",
"test": "true"
},
"activationEvents": [
"onLanguage:Dockerfile",
"onLanguage:dockerfile",
"onCommand:docker.version"
],
"contributes": {
"configuration": {
"type": "object",
"title": "docker",
"properties": {
"docker.enable": {
"type": "boolean",
"default": true
}
}
},
"commands": [
{
"command": "docker.version",
"title": "Print extension version"
}
]
},
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"coc.nvim": "0.0.82",
"eslint": "^7.32.0",
"eslint-config-josa-typescript": "^0.1.2",
"rimraf": "^4.1.2",
"typescript": "~4.9.5"
},
"dependencies": {
"dockerfile-language-server-nodejs": "^0.9.0",
"tslib": "^2.5.0"
}
}