-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (81 loc) · 2.62 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
78
79
80
81
82
{
"name": "autolinting-for-javascript",
"displayName": "Autolinting for Javascript",
"description": "Automatically activate the correct Javascript linter for your workspace.",
"keywords": [
"javascript", "linter", "json"
],
"icon": "icon.png",
"version": "1.3.0",
"publisher": "t-sauer",
"repository": {
"type": "git",
"url": "https://github.com/t-sauer/autolinting-for-javascript"
},
"bugs": {
"url": "https://github.com/t-sauer/autolinting-for-javascript/issues",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"vscode": "^1.7.0"
},
"categories": [
"Languages",
"Linters"
],
"activationEvents": [
"onCommand:extension.setLinter",
"onLanguage:javascript",
"workspaceContains:package.json",
"workspaceContains:.eslintrc",
"workspaceContains:.eslintrc.js",
"workspaceContains:.eslintrc.yaml",
"workspaceContains:.eslintrc.yml",
"workspaceContains:.eslintrc.json",
"workspaceContains:.jscsrc",
"workspaceContains:.jscs.json",
"workspaceContains:.jshintrc",
"workspaceContains:tslint.json"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.setLinter",
"title": "Automatically set correct Javascript linters"
}],
"configuration": {
"title": "Configuration for Javascript autolinting.",
"properties": {
"jsAutolint.defaultLinters": {
"type": "array",
"default": [],
"description": "Set default linters to be used when no configuration file can be found in the current workspace."
},
"jsAutolint.enable": {
"type": "boolean",
"default": true,
"description": "Turns of the automatically setting of linters."
},
"jsAutolint.showStatus": {
"type": "boolean",
"default": true,
"description": "Show active linters in the status bar."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "tslint ./src/*"
},
"devDependencies": {
"typescript": "^2.1.4",
"vscode": "^1.0.3",
"mocha": "^2.3.3",
"@types/node": "^6.0.51",
"@types/mocha": "^2.2.32"
}
}