-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.51 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
{
"name": "eslint-formatter-lsif",
"description": "LSIF exporter for ESLint",
"version": "0.0.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/eslint-formatter-lsif.git"
},
"keywords": [
"eslint",
"eslint-formatter",
"lsif"
],
"files": [
"dist"
],
"main": "dist/formatter.js",
"types": "dist/formatter.d.ts",
"scripts": {
"semantic-release": "semantic-release",
"prettier": "prettier '**/*.{js?(on),ts?(x),scss,md,yml}' --write --list-different",
"prettier-check": "npm run prettier -- --write=false",
"eslint": "eslint './src/*.ts?(x)'",
"build": "tsc -p .",
"watch": "tsc -p . -w"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@sourcegraph/eslint-config": "^0.37.1",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/tsconfig": "^4.0.1",
"@sourcegraph/tslint-config": "^13.4.0",
"@types/eslint": "8.56.10",
"@types/uuid": "9.0.8",
"eslint": "^9.2.0",
"husky": "^3.1.0",
"lsif-util": "^0.2.15",
"prettier": "^3.2.5",
"semantic-release": "^17.0.8",
"typescript": "^3.9.7"
},
"dependencies": {
"iterare": "^1.2.1",
"lsif-protocol": "^0.4.3",
"uuid": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.1"
}
}