forked from zokugun/vscode-explicit-folding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 KB
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
{
"name": "explicit-folding",
"displayName": "Explicit Folding",
"description": "Manually controls how and where to fold your code",
"version": "0.3.3",
"publisher": "zokugun",
"homepage": "https://github.com/zokugun/vscode-explicit-folding",
"repository": {
"type": "git",
"url": "https://github.com/zokugun/vscode-explicit-folding.git"
},
"bugs": {
"url": "https://github.com/zokugun/vscode-explicit-folding/issues"
},
"author": {
"name": "Baptiste Augrain",
"email": "daiyam@zokugun.org"
},
"license": "MIT",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "The Explicit Folding configuration",
"properties": {
"folding": {
"type": "object",
"description": "Markers that will determine the folding ranges."
}
}
}
},
"main": "./out/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^10.14.8",
"typescript": "^2.9.2",
"vscode": "^1.1.34"
},
"keywords": [
"folding"
]
}