-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.28 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
{
"name": "vscode-cocosbcx",
"displayName": "VSCode Cocos-BCX",
"description": "VSCode Cocos-BCX",
"version": "0.0.5",
"publisher": "Cocos-BCX",
"engines": {
"vscode": "^1.28.0"
},
"categories": [
"Snippets"
],
"main": "./out/src/extension",
"contributes": {
"snippets": [
{
"language": "lua",
"path": "./snippets.json"
}
],
"commands": [
{
"command": "bcx.new_contract",
"title": "BCX - New Contract"
},
{
"command": "bcx.publish_contract",
"title": "BCX - Publish Contract"
},
{
"command": "bcx.test_contract",
"title": "BCX - Test Contract"
}
]
},
"repository": "https://github.com/Cocos-BCX/vscode-cocos-bcx",
"icon": "logo.png",
"activationEvents": [
"onCommand:bcx.new_contract",
"onCommand:bcx.publish_contract",
"onCommand:bcx.test_contract"
],
"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"
},
"dependencies": {
"encoding": "^0.1.12",
"lodash": ">=4.17.13"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^11.12.0",
"mocha": "^6.1.4",
"typescript": "^2.5.2",
"vscode": "^1.1.36"
}
}