|
1 | | -{ |
2 | | - "name": "aurelia", |
3 | | - "version": "0.1.12", |
4 | | - "description": "A VS Code extension for Aurelia.", |
5 | | - "icon": "images/logo.png", |
6 | | - "keywords": [ |
7 | | - "aurelia", |
8 | | - "vscode", |
9 | | - "extension" |
10 | | - ], |
11 | | - "homepage": "http://aurelia.io", |
12 | | - "bugs": { |
13 | | - "url": "https://github.com/aurelia/vscode-extension/issues" |
14 | | - }, |
15 | | - "galleryBanner": { |
16 | | - "color": "#5c2d91", |
17 | | - "theme": "dark" |
18 | | - }, |
19 | | - "license": "MIT", |
20 | | - "author": "AureliaEffect", |
21 | | - "publisher": "AureliaEffect", |
22 | | - "preview": true, |
23 | | - "repository": { |
24 | | - "type": "git", |
25 | | - "url": "https://github.com/aurelia/vscode-extension" |
26 | | - }, |
27 | | - "engines": { |
28 | | - "vscode": "^1.8.0" |
29 | | - }, |
30 | | - "categories": [ |
31 | | - "Languages", |
32 | | - "Themes", |
33 | | - "Snippets" |
34 | | - ], |
35 | | - "activationEvents": [ |
36 | | - "onLanguage:html", |
37 | | - "onCommand:extension.auNew", |
38 | | - "onCommand:extension.auGenerate", |
39 | | - "onCommand:extension.auTest", |
40 | | - "onCommand:extension.auBuild", |
41 | | - "onCommand:extension.auRun", |
42 | | - "onCommand:extension.auRunWatch" |
43 | | - ], |
44 | | - "main": "./dist/src/client/main", |
45 | | - "contributes": { |
46 | | - "grammars": [ |
47 | | - { |
48 | | - "language": "html", |
49 | | - "scopeName": "au.html", |
50 | | - "path": "./syntaxes/html.json" |
51 | | - } |
52 | | - ], |
53 | | - "commands": [ |
54 | | - { |
55 | | - "command": "extension.auNew", |
56 | | - "title": "au new" |
57 | | - }, |
58 | | - { |
59 | | - "command": "extension.auGenerate", |
60 | | - "title": "au generate" |
61 | | - }, |
62 | | - { |
63 | | - "command": "extension.auBuild", |
64 | | - "title": "au build" |
65 | | - }, |
66 | | - { |
67 | | - "command": "extension.auTest", |
68 | | - "title": "au test" |
69 | | - }, |
70 | | - { |
71 | | - "command": "extension.auRun", |
72 | | - "title": "au run" |
73 | | - }, |
74 | | - { |
75 | | - "command": "extension.auRunWatch", |
76 | | - "title": "au run --watch" |
77 | | - } |
78 | | - ], |
79 | | - "themes": [ |
80 | | - { |
81 | | - "label": "Aurelia Dark+", |
82 | | - "uiTheme": "vs-dark", |
83 | | - "path": "./themes/dark_plus.json" |
84 | | - }, |
85 | | - { |
86 | | - "label": "Aurelia Dark", |
87 | | - "uiTheme": "vs-dark", |
88 | | - "path": "./themes/dark_vs.json" |
89 | | - }, |
90 | | - { |
91 | | - "label": "Aurelia Light+", |
92 | | - "uiTheme": "vs", |
93 | | - "path": "./themes/light_plus.json" |
94 | | - }, |
95 | | - { |
96 | | - "label": "Aurelia Light", |
97 | | - "uiTheme": "vs", |
98 | | - "path": "./themes/light_vs.json" |
99 | | - } |
100 | | - ], |
101 | | - "configuration": { |
102 | | - "id": "aurelia", |
103 | | - "order": 20, |
104 | | - "type": "object", |
105 | | - "title": "Aurelia", |
106 | | - "properties": { |
107 | | - "aurelia.autocomplete.quotes": { |
108 | | - "type": "string", |
109 | | - "enum": [ |
110 | | - "single", |
111 | | - "double" |
112 | | - ], |
113 | | - "default": "double", |
114 | | - "description": "Quotes to use when performing an autocomplete action" |
115 | | - } |
116 | | - } |
117 | | - } |
118 | | - }, |
119 | | - "scripts": { |
120 | | - "vscode:prepublish": "node ./node_modules/typescript/bin/tsc -p ./", |
121 | | - "build": "node ./node_modules/typescript/bin/tsc -p ./", |
122 | | - "watch": "node ./node_modules/typescript/bin/tsc -watch -p ./", |
123 | | - "postinstall": "node ./node_modules/vscode/bin/install", |
124 | | - "lint": "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project tsconfig.json", |
125 | | - "changelog": "node ./node_modules/conventional-changelog-cli/cli.js -p angular -i CHANGELOG.md -s", |
126 | | - "test": "mocha ./dist/test --recursive" |
127 | | - }, |
128 | | - "devDependencies": { |
129 | | - "@types/chai": "^3.4.34", |
130 | | - "@types/mocha": "^2.2.32", |
131 | | - "@types/node": "^6.0.45", |
132 | | - "chai": "^3.5.0", |
133 | | - "conventional-changelog-cli": "^1.2.0", |
134 | | - "mocha": "^3.1.0", |
135 | | - "mocha-junit-reporter": "^1.12.0", |
136 | | - "tslint": "^3.15.1", |
137 | | - "typescript": "^2.0.3", |
138 | | - "vscode": "^1.0.3", |
139 | | - "vscode-textmate": "^2.2.0" |
140 | | - }, |
141 | | - "dependencies": { |
142 | | - "aurelia-cli": "^0.21.0", |
143 | | - "vscode-languageclient": "^3.0.1-alpha.13", |
144 | | - "vscode-languageserver": "^3.0.1-alpha.13", |
145 | | - "vscode-languageserver-types": "^3.0.1-alpha.9", |
146 | | - "vscode-uri": "^1.0.0" |
147 | | - } |
148 | | -} |
| 1 | +{ |
| 2 | + "name": "aurelia", |
| 3 | + "version": "0.2.0", |
| 4 | + "description": "A VS Code extension for Aurelia.", |
| 5 | + "icon": "images/logo.png", |
| 6 | + "keywords": [ |
| 7 | + "aurelia", |
| 8 | + "vscode", |
| 9 | + "extension" |
| 10 | + ], |
| 11 | + "homepage": "http://aurelia.io", |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/aurelia/vscode-extension/issues" |
| 14 | + }, |
| 15 | + "galleryBanner": { |
| 16 | + "color": "#5c2d91", |
| 17 | + "theme": "dark" |
| 18 | + }, |
| 19 | + "license": "MIT", |
| 20 | + "author": "AureliaEffect", |
| 21 | + "publisher": "AureliaEffect", |
| 22 | + "preview": true, |
| 23 | + "repository": { |
| 24 | + "type": "git", |
| 25 | + "url": "https://github.com/aurelia/vscode-extension" |
| 26 | + }, |
| 27 | + "engines": { |
| 28 | + "vscode": "^1.8.0" |
| 29 | + }, |
| 30 | + "categories": [ |
| 31 | + "Languages", |
| 32 | + "Themes", |
| 33 | + "Snippets" |
| 34 | + ], |
| 35 | + "activationEvents": [ |
| 36 | + "onLanguage:html", |
| 37 | + "onCommand:extension.auNew", |
| 38 | + "onCommand:extension.auGenerate", |
| 39 | + "onCommand:extension.auTest", |
| 40 | + "onCommand:extension.auBuild", |
| 41 | + "onCommand:extension.auRun", |
| 42 | + "onCommand:extension.auRunWatch" |
| 43 | + ], |
| 44 | + "main": "./dist/src/client/main", |
| 45 | + "contributes": { |
| 46 | + "grammars": [ |
| 47 | + { |
| 48 | + "language": "html", |
| 49 | + "scopeName": "au.html", |
| 50 | + "path": "./syntaxes/html.json" |
| 51 | + } |
| 52 | + ], |
| 53 | + "commands": [ |
| 54 | + { |
| 55 | + "command": "extension.auNew", |
| 56 | + "title": "au new" |
| 57 | + }, |
| 58 | + { |
| 59 | + "command": "extension.auGenerate", |
| 60 | + "title": "au generate" |
| 61 | + }, |
| 62 | + { |
| 63 | + "command": "extension.auBuild", |
| 64 | + "title": "au build" |
| 65 | + }, |
| 66 | + { |
| 67 | + "command": "extension.auTest", |
| 68 | + "title": "au test" |
| 69 | + }, |
| 70 | + { |
| 71 | + "command": "extension.auRun", |
| 72 | + "title": "au run" |
| 73 | + }, |
| 74 | + { |
| 75 | + "command": "extension.auRunWatch", |
| 76 | + "title": "au run --watch" |
| 77 | + } |
| 78 | + ], |
| 79 | + "themes": [ |
| 80 | + { |
| 81 | + "label": "Aurelia Dark+", |
| 82 | + "uiTheme": "vs-dark", |
| 83 | + "path": "./themes/dark_plus.json" |
| 84 | + }, |
| 85 | + { |
| 86 | + "label": "Aurelia Dark", |
| 87 | + "uiTheme": "vs-dark", |
| 88 | + "path": "./themes/dark_vs.json" |
| 89 | + }, |
| 90 | + { |
| 91 | + "label": "Aurelia Light+", |
| 92 | + "uiTheme": "vs", |
| 93 | + "path": "./themes/light_plus.json" |
| 94 | + }, |
| 95 | + { |
| 96 | + "label": "Aurelia Light", |
| 97 | + "uiTheme": "vs", |
| 98 | + "path": "./themes/light_vs.json" |
| 99 | + } |
| 100 | + ], |
| 101 | + "configuration": { |
| 102 | + "id": "aurelia", |
| 103 | + "order": 20, |
| 104 | + "type": "object", |
| 105 | + "title": "Aurelia", |
| 106 | + "properties": { |
| 107 | + "aurelia.autocomplete.quotes": { |
| 108 | + "type": "string", |
| 109 | + "enum": [ |
| 110 | + "single", |
| 111 | + "double" |
| 112 | + ], |
| 113 | + "default": "double", |
| 114 | + "description": "Quotes to use when performing an autocomplete action" |
| 115 | + } |
| 116 | + } |
| 117 | + } |
| 118 | + }, |
| 119 | + "scripts": { |
| 120 | + "vscode:prepublish": "node ./node_modules/typescript/bin/tsc -p ./", |
| 121 | + "build": "node ./node_modules/typescript/bin/tsc -p ./", |
| 122 | + "watch": "node ./node_modules/typescript/bin/tsc -watch -p ./", |
| 123 | + "postinstall": "node ./node_modules/vscode/bin/install", |
| 124 | + "lint": "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project tsconfig.json", |
| 125 | + "changelog": "node ./node_modules/conventional-changelog-cli/cli.js -p angular -i CHANGELOG.md -s", |
| 126 | + "test": "mocha ./dist/test --recursive" |
| 127 | + }, |
| 128 | + "devDependencies": { |
| 129 | + "@types/chai": "^3.4.34", |
| 130 | + "@types/mocha": "^2.2.32", |
| 131 | + "@types/node": "^6.0.45", |
| 132 | + "chai": "^3.5.0", |
| 133 | + "conventional-changelog-cli": "^1.2.0", |
| 134 | + "mocha": "^3.1.0", |
| 135 | + "mocha-junit-reporter": "^1.12.0", |
| 136 | + "tslint": "^3.15.1", |
| 137 | + "typescript": "^2.0.3", |
| 138 | + "vscode": "^1.0.3", |
| 139 | + "vscode-textmate": "^2.2.0" |
| 140 | + }, |
| 141 | + "dependencies": { |
| 142 | + "aurelia-cli": "^0.21.0", |
| 143 | + "vscode-languageclient": "^3.0.1-alpha.13", |
| 144 | + "vscode-languageserver": "^3.0.1-alpha.13", |
| 145 | + "vscode-languageserver-types": "^3.0.1-alpha.9", |
| 146 | + "vscode-uri": "^1.0.0" |
| 147 | + } |
| 148 | +} |
0 commit comments