forked from idahogurl/vs-code-prettier-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.93 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"publisher": "rvest",
"name": "vs-code-prettier-eslint",
"displayName": "Prettier ESLint",
"description": "A Visual Studio Extension to format JavaScript and Typescript code using prettier-eslint package",
"license": "MIT",
"author": "Rebecca Vest <olserebe@hotmail.com>",
"icon": "icon.png",
"keywords": [
"eslint",
"prettier",
"prettier-eslint",
"multi-root ready"
],
"repository": {
"type": "git",
"url": "https://github.com/idahogurl/vs-code-prettier-eslint"
},
"version": "5.1.1",
"engines": {
"vscode": "^1.63.0",
"node": "^16.13.0"
},
"categories": [
"Formatters"
],
"main": "./dist/extension.js",
"activationEvents": [
"onLanguage:css",
"onLanguage:graphql",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:json",
"onLanguage:jsonc",
"onLanguage:less",
"onLanguage:markdown",
"onLanguage:mdx",
"onLanguage:scss",
"onLanguage:svelte",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue",
"onLanguage:yaml"
],
"scripts": {
"lint": "eslint . --ignore-pattern test/fixtures/",
"pretest": "yarn lint",
"test": "node ./test/runTest.js",
"test:update": "SNAPSHOT_UPDATE=true node ./test/runTest.js",
"dev": "NODE_ENV=dev node ./scripts/build.js",
"watch": "NODE_ENV=dev,watch node ./scripts/build.js",
"build": "NODE_ENV=prod node ./scripts/build.js",
"package": "yarn build && vsce package --yarn",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@auto-it/exec": "^10.42.2",
"@auto-it/first-time-contributor": "^10.42.2",
"@auto-it/released": "^10.42.2",
"@auto-it/upload-assets": "^10.42.2",
"@auto-it/vscode": "^10.42.2",
"@types/node": "^18.14.2",
"@vscode/test-electron": "^2.2.3",
"all-contributors-cli": "^6.24.0",
"auto": "^10.42.2",
"esbuild": "^0.16.14",
"esbuild-plugin-text-replace": "^1.2.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.0",
"jest": "^29.3.1",
"jest-environment-node": "^29.3.1",
"ovsx": "^0.7.1",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vsce": "^2.15.0"
},
"dependencies": {
"find-up": "^6.3.0",
"ignore": "^5.2.4",
"prettier-eslint": "^15.0.1"
},
"contributes": {
"configuration": {
"title": "Prettier Eslint",
"properties": {
"vs-code-prettier-eslint.prettierLast": {
"type": "boolean",
"default": false,
"description": "Run Prettier Last"
}
}
}
},
"__metadata": {
"id": "d4b06bd6-36a0-469f-be55-c0a73413b688",
"publisherDisplayName": "Rebecca Vest",
"publisherId": "b95e678b-a11b-44b4-b281-6b521c2005bc",
"isPreReleaseVersion": false
}
}