UNPKG

1.39 kBJSONView Raw
1{
2 "name": "vscode-es-beautifier",
3 "displayName": "es-beautifier",
4 "publisher": "dai-shi",
5 "description": "vscode plugin for es-beautifier",
6 "icon": "logo1.svg",
7 "version": "0.2.0",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/dai-shi/es-beautifier.git"
11 },
12 "dependencies": {
13 "es-beautifier": "^0.6.0"
14 },
15 "devDependencies": {
16 "vscode": "^1.0.3"
17 },
18 "activationEvents": [
19 "onLanguage:es-beautifier"
20 ],
21 "main": "./index.js",
22 "contributes": {
23 "languages": [{
24 "id": "es-beautifier",
25 "aliases": ["JavaScript (es-beautifier)"],
26 "extensions": ["js", "jsx"],
27 "configuration": "./vendor/language-configuration.json"
28 }],
29 "grammars": [{
30 "language": "es-beautifier",
31 "scopeName": "source.js",
32 "path": "./vendor/JavaScript.tmLanguage.json"
33 }, {
34 "scopeName": "source.js.regexp",
35 "path": "./vendor/Regular Expressions (JavaScript).tmLanguage"
36 }],
37 "snippets": [{
38 "language": "es-beautifier",
39 "path": "./vendor/javascriptreact.json"
40 }]
41 },
42 "categories": [
43 "Formatters"
44 ],
45 "keywords": [
46 "javascript",
47 "emcascript",
48 "eslint",
49 "beautifier",
50 "beautify"
51 ],
52 "engines": {
53 "vscode": "^1.0.0"
54 },
55 "eslintConfig": {
56 "settings": {
57 "import/core-modules": [
58 "vscode"
59 ]
60 }
61 },
62 "license": "MIT"
63}