-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 2.66 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
{
"name": "vcslack",
"displayName": "VCSlack",
"description": "send snippet or text to slack",
"version": "2.7.1",
"publisher": "verydanny",
"homepage": "https://github.com/verydanny/vcslack/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/verydanny/vcslack"
},
"bugs": {
"url": "https://github.com/verydanny/vcslack/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.40.0"
},
"icon": "image/icon.png",
"categories": [
"Other"
],
"author": {
"name": "Daniil Veremchuk",
"email": "[email protected]",
"url": "https://github.com/verydanny/"
},
"keywords": [
"Slack",
"chat",
"communication",
"collaboration",
"messenger",
"slack snippets",
"snippets"
],
"activationEvents": [
"*",
"onCommand:vcslack.sendSnippet"
],
"files": [
"./lib"
],
"main": "./lib/extension.js",
"contributes": {
"commands": [
{
"command": "vcslack.sendSnippet",
"title": "VCSlack: Send Snippet"
}
],
"configuration": {
"type": "object",
"title": "VCSlack configuration",
"properties": {
"vcslack.selfToken": {
"type": "array",
"description": "Specify the tokens of your slack team"
}
}
}
},
"scripts": {
"vscode:prepublish": "rm -rf lib && yarn webpack --mode production",
"test-compile": "rm -r lib && tsc -p ./",
"watch": "rm -r lib && tsc -watch -p ./",
"webpack-prod": "rm -r lib && webpack --mode production",
"webpack-dev": "rm -r lib && webpack --mode development --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"lint": "eslint src/**/* --ignore-pattern src/**/*.d.ts",
"eslint-check": "eslint --print-config path/to/main.js | eslint-config-prettier-check"
},
"devDependencies": {
"@types/lodash": "^4.14.150",
"@types/mocha": "^7.0.2",
"@types/phin": "^3.4.0",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.46",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"mocha": "^7.1.1",
"phin": "^3.4.1",
"prettier": "^2.0.5",
"rambdax": "^3.7.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"ts-loader": "^7.0.1",
"typescript": "^3.8.3",
"vscode": "^1.1.36",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11"
}
}