-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "types-autoinstaller",
"displayName": "Types auto installer",
"description": "Any time you save either package.json or bower.json the types package will be installed/uninstalled automatically in the background.",
"version": "2.4.0",
"publisher": "jvitor83",
"author": {
"name": "Joao Vitor Paes de Barros do Carmo [https://about.me/jvitor83]"
},
"engines": {
"vscode": "^1.0.0"
},
"icon": "images/Typings-AutoInstaller-Icon2.png",
"categories": [
"Other"
],
"galleryBanner": {
"color": "#ffcc2f",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/jvitor83/types-autoinstaller.git"
},
"activationEvents": [
"workspaceContains:package.json",
"onCommand:types.installAllDependencies"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Types Auto Installer configuration",
"properties": {
"types-autoinstaller.saveAsDevDependency": {
"type": "boolean",
"default": false,
"description": "Install @types for \"dependencies\" to the \"devDevependencies\" section of package.json"
},
"types-autoinstaller.useYarn": {
"type": "boolean",
"default": false,
"description": "Use yarn to instead of npm"
}
}
},
"commands": [
{
"command": "types.installAllDependencies",
"title": "Types: Install definitions for all dependencies"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.24",
"@types/lodash": "^4.14.74",
"tslint": "^5.5.0",
"typescript": "next",
"vscode": "^1.0.0"
}
}