-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.75 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
{
"name": "cakerecipe-vscode",
"displayName": "Cake.Recipe",
"publisher": "gep13",
"description": "Set of commands for working with Cake.Recipe.",
"version": "0.1.0",
"icon": "images/icon.png",
"private": true,
"author": {
"name": "gep13"
},
"bugs": {
"url": "https://github.com/gep13-oss/cakerecipe-vscode/issues"
},
"homepage": "https://github.com/gep13-oss/cakerecipe-vscode",
"repository": {
"type": "git",
"url": "https://github.com/gep13-oss/cakerecipe-vscode"
},
"main": "./out/extension",
"galleryBanner": {
"color": "#DCEBFC",
"theme": "light"
},
"activationEvents": [
"onCommand:cakerecipe.buildscript",
"onCommand:cakerecipe.vscodebuildscript"
],
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "cakerecipe.buildscript",
"title": "Cake.Recipe: Add default recipe.cake file"
},
{
"command": "cakerecipe.vscodebuildscript",
"title": "Cake.VsCode.Recipe: Add default recipe.cake file"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/byline": "^4.2.32",
"@types/expect": "^24.3.0",
"@types/ini": "^1.3.29",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/node-fetch": "^2.5.7",
"@types/xml2js": "^0.4.5",
"expect": "^26.0.1",
"mocha": "^7.1.2",
"tslint": "^6.1.2",
"typemoq": "^2.1.0",
"typescript": "^3.9.2",
"vscode": "^1.1.37"
},
"dependencies": {
"inversify": "^5.0.1",
"reflect-metadata": "^0.1.13"
},
"extensionDependencies": [
"cake-build.cake-vscode"
]
}