-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 1.92 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
{
"name": "cobol-folding",
"displayName": "COBOL Folding",
"description": "Add foldings to COBOL files",
"version": "0.2.0",
"author": {
"name": "Baptiste Augrain",
"email": "[email protected]"
},
"publisher": "zokugun",
"license": "MIT",
"homepage": "https://github.com/zokugun/vscode-cobol-folding",
"repository": {
"type": "git",
"url": "https://github.com/zokugun/vscode-cobol-folding.git"
},
"bugs": {
"url": "https://github.com/zokugun/vscode-cobol-folding/issues"
},
"engines": {
"vscode": "^1.23.0"
},
"main": "./lib/index.js",
"browser": "./lib/index.js",
"scripts": {
"bundle": "webpack",
"commit": "cz",
"compile": "tsc -p src",
"lint": "xo",
"prepare": "husky install; fixpack || true",
"release": "release-it",
"vscode:prepublish": "npm run compile && npm run bundle",
"watch": "tsc-watch -p src --onSuccess 'npm run bundle'"
},
"dependencies": {
"@zokugun/vscode.explicit-folding-api": "0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^14.17.16",
"@types/vscode": "^1.23.0",
"commitizen": "^4.2.4",
"fixpack": "^4.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"release-it": "^14.11.3",
"tsc-watch": "^4.4.0",
"typescript": "^4.2.4",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"xo": "^0.43.0"
},
"extensionDependencies": [
"zokugun.explicit-folding"
],
"activationEvents": [
"onLanguage:cobol",
"onLanguage:gnucobol"
],
"contributes": {
"configuration": {
"type": "object",
"title": "COBOL Folding configuration",
"properties": {
"cobolFolding.enabled": {
"type": "boolean",
"default": true,
"description": ""
}
}
}
},
"icon": "icon.png",
"galleryBanner": {
"color": "#373b41",
"theme": "dark"
},
"categories": [
"Other"
],
"keywords": [
"cobol",
"folding"
]
}