-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
{
"name": "vscode-typings",
"displayName": "Typings",
"description": "Coming Soon: Happy coding with typings (https://github.com/typings/typings)",
"version": "0.0.5",
"publisher": "typings",
"repository": {
"type": "git",
"url": "https://github.com/typings/vscode.git"
},
"license": "MIT",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Languages"
],
"activationEvents": [
"onCommand:typings.search",
"onCommand:typings.install",
"onCommand:typings.init",
"onCommand:typings.uninstall",
"onCommand:typings.list",
"onCommand:typings.bundle",
"onCommand:typings.runAny"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "typings.search",
"title": "Typings : Search for definitions"
},
{
"command": "typings.install",
"title": "Typings : Install typings"
},
{
"command": "typings.init",
"title": "Typings : Initialize typings.json"
},
{
"command": "typings.uninstall",
"title": "Typings : Removes a typings"
},
{
"command": "typings.list",
"title": "Typings : Show all installed typings"
},
{
"command": "typings.bundle",
"title": "Typings : Bundle the current project types into an single ambient module"
},
{
"command": "typings.runAny",
"title": "Typings : run any commands as in command line"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"test": "rm -rf .vscode-test && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-tslint": "^4.3.3",
"tslint": "git://github.com/unional/tslint.git",
"tslint-config-unional": "^0.1.3",
"typescript": "^1.8.7",
"vscode": "0.10.x"
},
"dependencies": {
"bluebird": "^3.1.5",
"typings-core": "^0.2.9"
}
}