forked from withfig/autocomplete-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "root",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^8.0.0",
"lint-staged": "^11.1.2",
"prettier": "2.2.1"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"build": "yarn workspaces foreach -v --exclude root run build",
"test:since": "yarn workspaces foreach -vR --exclude root --since=$(git rev-parse head) run test",
"test": "yarn workspaces foreach -v --exclude root run test",
"postinstall": "husky install && yarn build",
"pre-commit": "lint-staged && yarn test:since",
"clean": "git clean -Xdf ."
},
"packageManager": "[email protected]",
"workspaces": [
"eslint/*",
"types",
"types/docs-generator",
"shared",
"generators",
"helpers",
"merge",
"integrations/oclif",
"integrations/commander",
"cli/create-completion-spec",
"cli/publish-spec",
"cli/tools-cli"
],
"lint-staged": {
"*.{ts,js,tsx}": "eslint --fix"
},
"dependencies": {
"eslint-plugin-compat": "^3.13.0",
"husky": "^7.0.2"
},
"fig": {
"lint": {
"description": "Lint the code and find errors",
"icon": "🔍"
},
"lint:fix": {
"description": "Lint the code and fix errors",
"icon": "🧰"
}
}
}