-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "ruby-symbols",
"displayName": "ruby-symbols",
"description": "VSCode Ruby symbols search methods",
"version": "0.1.8",
"publisher": "miguel-savignano",
"author": "Miguel Savignano",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/icon.png",
"keywords": [
"ruby",
"ruby symbols",
"search code"
],
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Languages"
],
"activationEvents": [
"onLanguage:ruby"
],
"repository": {
"type": "git",
"url": "https://github.com/MiguelSavignano/vs-code-ruby-symbols"
},
"main": "./out/src/extension",
"contributes": {
"commands": []
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "mocha -r ts-node/register test/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^6.0.40",
"chai": "^4.1.2",
"mocha": "^2.5.3",
"ts-node": "^5.0.1",
"typescript": "^2.0.3"
},
"dependencies": {
"fs": "0.0.1-security"
}
}