-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.93 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
{
"name": "vscode-cmd-flow",
"displayName": "cmd-flow",
"description": "vscode extension run terminal cmd one by one",
"version": "0.7.7",
"publisher": "zsytssk",
"author": {
"name": "zsytssk",
"email": "[email protected]"
},
"categories": [
"Other"
],
"keywords": [
"cmd",
"markdown"
],
"homepage": "https://github.com/zsytssk/cmd_flow",
"bugs": {
"url": "https://github.com/zsytssk/cmd_flow/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zsytssk/cmd_flow.git"
},
"license": "MIT",
"engines": {
"vscode": "^1.26.0"
},
"activationEvents": [
"onCommand:cmdFlow.listCmd",
"onCommand:cmdFlow.listFile"
],
"icon": "images/cmdFlow-icon.png",
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "cmdFlow.listCmd",
"title": "cmdFlow: list all cmd"
},
{
"command": "cmdFlow.listFile",
"title": "cmdFlow: list all file"
}
],
"configuration": {
"type": "object",
"title": "cmdFlow",
"properties": {
"cmdFlow.globalFile": {
"type": "string",
"default": "",
"description": "cmdFlow global cmd file position"
},
"cmdFlow.workspaceFile": {
"type": "string",
"default": "",
"description": "cmdFlow workspace folder cmd file position"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint ./src/*.ts",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.4",
"mocha": "^6.1.4",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"vscode": "^1.1.34"
},
"dependencies": {
"strip-ansi": "^5.2.0"
}
}