-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "vsc-cpp-folding",
"publisher": "abg",
"displayName": "C++ Code Folding",
"description": "Enable syntax-based code folding for C and C++",
"repository": "https://github.com/akbyrd/vsc-cpp-folding",
"version": "0.0.4",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:cpp"
],
"main": "./out/extension.js",
"gypfile": true,
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "./node_modules/.bin/electron-rebuild -v 2.0.12 && node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"bindings": "^1.2.1",
"node-addon-api": "^1.0.0"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.51",
"electron-rebuild": "^1.8.5",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"vsce": "^1.65.0",
"vscode": "^1.1.35"
},
"contributes": {
"configuration": {
"title": "C++ Code Folding",
"properties": {
"cppfold.debug": {
"type": "boolean",
"default": false,
"description": "Enable additional logging and other helpful development behavior."
}
}
}
}
}