-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.35 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
{
"name": "tesserak",
"displayName": "Tesserak",
"description": "Copy a file to a specified output location related to the project",
"version": "2.1.0",
"publisher": "frappacchio",
"contributors": [
"Remo Fiorentino <[email protected]>",
"Francesco Colonna <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/openmindlab/tesserak.git",
"icon": "resources/tesserak_big.png",
"repository": {
"type": "git",
"url": "https://github.com/openmindlab/tesserak.git"
},
"bugs": {
"url": "https://github.com/openmindlab/tesserak.git/issues"
},
"engines": {
"vscode": "^1.19.0"
},
"categories": [
"Other"
],
"keywords": [
"copy",
"file",
"copy file",
"map file",
"file copy"
],
"activationEvents": [
"onCommand:extension.tesserakThis",
"onCommand:extension.tesserakThis"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.tesserakThis",
"title": "Tesserak this!",
"icon": {
"light": "./resources/light-cube.svg",
"dark": "./resources/dark-cube.svg"
}
}
],
"menus": {
"explorer/context": [
{
"command": "extension.tesserakThis",
"group": "5_cutcopypaste"
}
],
"editor/title": [
{
"command": "extension.tesserakThis",
"group": "navigation"
}
]
},
"configuration": [
{
"type": "object",
"title": "Tesserak Configuration",
"properties": {
"tesserak.pathMapping": {
"type": "array",
"default": [],
"description": "Array of path mapping objects. \"input\" is the input base absolute path. \"output\" is the output base absolute path."
},
"tesserak.replaceIfExists": {
"type": "boolean",
"default": true,
"description": "Replace an exisiting file at the output location if it already exists."
}
}
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"vscode": "^1.1.34",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"fs-extra": "^7.0.1"
}
}