-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
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
{
"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",
"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.0",
"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",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vscode/test-electron": "^2.2.0",
"all-contributors-cli": "^6.24.0",
"esbuild": "^0.15.15",
"esbuild-plugin-text-replace": "^1.2.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"jest-environment-node": "^29.3.1",
"ovsx": "^0.5.2",
"prettier": "^2.8.0",
"semantic-release": "^19.0.5",
"vsce": "^2.14.0"
},
"dependencies": {
"find-up": "^6.3.0",
"ignore": "^5.2.0",
"prettier-eslint": "^15.0.1"
}
}