-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 922 Bytes
/
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
{
"name": "vscode-linter",
"version": "0.3.1",
"description": "Linter for VSCode extensions, supporting language syntax, snippets, themes and more",
"author": "Jan T. Sott",
"license": "MIT",
"repository": "https://github.com/idleberg/node-vscode-linter",
"scripts": {
"fix": "eslint --fix index.js",
"test": "eslint index.js"
},
"keywords": [
"vscode",
"visual studio code",
"textmate",
"linter"
],
"main": "index.js",
"bin": {
"vscode-linter": "index.js"
},
"dependencies": {
"@prantlf/gulp-jsonlint": "^2.3.2",
"commander": "^4.0.1",
"gulp": "^4.0.2",
"gulp-debug": "^4.0.0",
"gulp-tslint": "^8.1.4",
"gulp-xml-validator": "^0.3.0",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"devDependencies": {
"eslint": "^6.8.0",
"husky": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}