forked from idahogurl/vs-code-prettier-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 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
{
"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": "3.1.0",
"engines": {
"vscode": "^1.42.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 .",
"pretest": "yarn run lint",
"test": "node ./test/runTest.js",
"test:update": "SNAPSHOT_UPDATE=true node ./test/runTest.js",
"dev": "NODE_ENV=dev yarn rollup --config rollup.dev.config.js",
"watch": "NODE_ENV=dev yarn rollup --config rollup.dev.config.js --watch",
"build": "NODE_ENV=prod yarn rollup --config rollup.prod.config.js",
"package": "yarn build && vsce package --yarn",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/glob": "^7.1.2",
"@types/mocha": "^7.0.1",
"@types/node": "^14.0.13",
"@types/vscode": "^1.42.0",
"all-contributors-cli": "^6.16.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"expect": "^26.6.2",
"expect-mocha-snapshot": "^2.1.1",
"glob": "^7.1.6",
"mocha": "^8.3.2",
"prettier": "^1.19.1",
"rollup": "^2.18.2",
"rollup-plugin-terser": "^5.2.0",
"typescript": "^3.9.5",
"vsce": "^1.87.0",
"vscode-test": "^1.3.0"
},
"dependencies": {
"core-js": "^3.9.1",
"find-up": "^5.0.0",
"ignore": "^5.1.8",
"prettier-eslint": "^10.1.0"
}
}