-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.24 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": "gi",
"displayName": "gi",
"description": "Generating .gitignore files made easy",
"version": "0.2.11",
"publisher": "rubbersheep",
"license": "MIT",
"icon": "assets/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/hasit/vscode-gi"
},
"homepage": "https://github.com/hasit/vscode-gi/blob/master/README.md",
"bugs": {
"url": "https://github.com/hasit/vscode-gi/issues"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.gi"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.gi",
"title": "gi"
}
]
},
"scripts": {
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^3.1.2",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"axios": "^0.15.2",
"error-ex": "^1.3.0"
}
}