-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a438cb5
commit cb22532
Showing
2 changed files
with
158 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,148 +1,148 @@ | ||
{ | ||
"name": "aurelia", | ||
"version": "0.1.12", | ||
"description": "A VS Code extension for Aurelia.", | ||
"icon": "images/logo.png", | ||
"keywords": [ | ||
"aurelia", | ||
"vscode", | ||
"extension" | ||
], | ||
"homepage": "http://aurelia.io", | ||
"bugs": { | ||
"url": "https://github.com/aurelia/vscode-extension/issues" | ||
}, | ||
"galleryBanner": { | ||
"color": "#5c2d91", | ||
"theme": "dark" | ||
}, | ||
"license": "MIT", | ||
"author": "AureliaEffect", | ||
"publisher": "AureliaEffect", | ||
"preview": true, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aurelia/vscode-extension" | ||
}, | ||
"engines": { | ||
"vscode": "^1.8.0" | ||
}, | ||
"categories": [ | ||
"Languages", | ||
"Themes", | ||
"Snippets" | ||
], | ||
"activationEvents": [ | ||
"onLanguage:html", | ||
"onCommand:extension.auNew", | ||
"onCommand:extension.auGenerate", | ||
"onCommand:extension.auTest", | ||
"onCommand:extension.auBuild", | ||
"onCommand:extension.auRun", | ||
"onCommand:extension.auRunWatch" | ||
], | ||
"main": "./dist/src/client/main", | ||
"contributes": { | ||
"grammars": [ | ||
{ | ||
"language": "html", | ||
"scopeName": "au.html", | ||
"path": "./syntaxes/html.json" | ||
} | ||
], | ||
"commands": [ | ||
{ | ||
"command": "extension.auNew", | ||
"title": "au new" | ||
}, | ||
{ | ||
"command": "extension.auGenerate", | ||
"title": "au generate" | ||
}, | ||
{ | ||
"command": "extension.auBuild", | ||
"title": "au build" | ||
}, | ||
{ | ||
"command": "extension.auTest", | ||
"title": "au test" | ||
}, | ||
{ | ||
"command": "extension.auRun", | ||
"title": "au run" | ||
}, | ||
{ | ||
"command": "extension.auRunWatch", | ||
"title": "au run --watch" | ||
} | ||
], | ||
"themes": [ | ||
{ | ||
"label": "Aurelia Dark+", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/dark_plus.json" | ||
}, | ||
{ | ||
"label": "Aurelia Dark", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/dark_vs.json" | ||
}, | ||
{ | ||
"label": "Aurelia Light+", | ||
"uiTheme": "vs", | ||
"path": "./themes/light_plus.json" | ||
}, | ||
{ | ||
"label": "Aurelia Light", | ||
"uiTheme": "vs", | ||
"path": "./themes/light_vs.json" | ||
} | ||
], | ||
"configuration": { | ||
"id": "aurelia", | ||
"order": 20, | ||
"type": "object", | ||
"title": "Aurelia", | ||
"properties": { | ||
"aurelia.autocomplete.quotes": { | ||
"type": "string", | ||
"enum": [ | ||
"single", | ||
"double" | ||
], | ||
"default": "double", | ||
"description": "Quotes to use when performing an autocomplete action" | ||
} | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "node ./node_modules/typescript/bin/tsc -p ./", | ||
"build": "node ./node_modules/typescript/bin/tsc -p ./", | ||
"watch": "node ./node_modules/typescript/bin/tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"lint": "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project tsconfig.json", | ||
"changelog": "node ./node_modules/conventional-changelog-cli/cli.js -p angular -i CHANGELOG.md -s", | ||
"test": "mocha ./dist/test --recursive" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^3.4.34", | ||
"@types/mocha": "^2.2.32", | ||
"@types/node": "^6.0.45", | ||
"chai": "^3.5.0", | ||
"conventional-changelog-cli": "^1.2.0", | ||
"mocha": "^3.1.0", | ||
"mocha-junit-reporter": "^1.12.0", | ||
"tslint": "^3.15.1", | ||
"typescript": "^2.0.3", | ||
"vscode": "^1.0.3", | ||
"vscode-textmate": "^2.2.0" | ||
}, | ||
"dependencies": { | ||
"aurelia-cli": "^0.21.0", | ||
"vscode-languageclient": "^3.0.1-alpha.13", | ||
"vscode-languageserver": "^3.0.1-alpha.13", | ||
"vscode-languageserver-types": "^3.0.1-alpha.9", | ||
"vscode-uri": "^1.0.0" | ||
} | ||
} | ||
{ | ||
"name": "aurelia", | ||
"version": "0.2.0", | ||
"description": "A VS Code extension for Aurelia.", | ||
"icon": "images/logo.png", | ||
"keywords": [ | ||
"aurelia", | ||
"vscode", | ||
"extension" | ||
], | ||
"homepage": "http://aurelia.io", | ||
"bugs": { | ||
"url": "https://github.com/aurelia/vscode-extension/issues" | ||
}, | ||
"galleryBanner": { | ||
"color": "#5c2d91", | ||
"theme": "dark" | ||
}, | ||
"license": "MIT", | ||
"author": "AureliaEffect", | ||
"publisher": "AureliaEffect", | ||
"preview": true, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/aurelia/vscode-extension" | ||
}, | ||
"engines": { | ||
"vscode": "^1.8.0" | ||
}, | ||
"categories": [ | ||
"Languages", | ||
"Themes", | ||
"Snippets" | ||
], | ||
"activationEvents": [ | ||
"onLanguage:html", | ||
"onCommand:extension.auNew", | ||
"onCommand:extension.auGenerate", | ||
"onCommand:extension.auTest", | ||
"onCommand:extension.auBuild", | ||
"onCommand:extension.auRun", | ||
"onCommand:extension.auRunWatch" | ||
], | ||
"main": "./dist/src/client/main", | ||
"contributes": { | ||
"grammars": [ | ||
{ | ||
"language": "html", | ||
"scopeName": "au.html", | ||
"path": "./syntaxes/html.json" | ||
} | ||
], | ||
"commands": [ | ||
{ | ||
"command": "extension.auNew", | ||
"title": "au new" | ||
}, | ||
{ | ||
"command": "extension.auGenerate", | ||
"title": "au generate" | ||
}, | ||
{ | ||
"command": "extension.auBuild", | ||
"title": "au build" | ||
}, | ||
{ | ||
"command": "extension.auTest", | ||
"title": "au test" | ||
}, | ||
{ | ||
"command": "extension.auRun", | ||
"title": "au run" | ||
}, | ||
{ | ||
"command": "extension.auRunWatch", | ||
"title": "au run --watch" | ||
} | ||
], | ||
"themes": [ | ||
{ | ||
"label": "Aurelia Dark+", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/dark_plus.json" | ||
}, | ||
{ | ||
"label": "Aurelia Dark", | ||
"uiTheme": "vs-dark", | ||
"path": "./themes/dark_vs.json" | ||
}, | ||
{ | ||
"label": "Aurelia Light+", | ||
"uiTheme": "vs", | ||
"path": "./themes/light_plus.json" | ||
}, | ||
{ | ||
"label": "Aurelia Light", | ||
"uiTheme": "vs", | ||
"path": "./themes/light_vs.json" | ||
} | ||
], | ||
"configuration": { | ||
"id": "aurelia", | ||
"order": 20, | ||
"type": "object", | ||
"title": "Aurelia", | ||
"properties": { | ||
"aurelia.autocomplete.quotes": { | ||
"type": "string", | ||
"enum": [ | ||
"single", | ||
"double" | ||
], | ||
"default": "double", | ||
"description": "Quotes to use when performing an autocomplete action" | ||
} | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"vscode:prepublish": "node ./node_modules/typescript/bin/tsc -p ./", | ||
"build": "node ./node_modules/typescript/bin/tsc -p ./", | ||
"watch": "node ./node_modules/typescript/bin/tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"lint": "node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project tsconfig.json", | ||
"changelog": "node ./node_modules/conventional-changelog-cli/cli.js -p angular -i CHANGELOG.md -s", | ||
"test": "mocha ./dist/test --recursive" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^3.4.34", | ||
"@types/mocha": "^2.2.32", | ||
"@types/node": "^6.0.45", | ||
"chai": "^3.5.0", | ||
"conventional-changelog-cli": "^1.2.0", | ||
"mocha": "^3.1.0", | ||
"mocha-junit-reporter": "^1.12.0", | ||
"tslint": "^3.15.1", | ||
"typescript": "^2.0.3", | ||
"vscode": "^1.0.3", | ||
"vscode-textmate": "^2.2.0" | ||
}, | ||
"dependencies": { | ||
"aurelia-cli": "^0.21.0", | ||
"vscode-languageclient": "^3.0.1-alpha.13", | ||
"vscode-languageserver": "^3.0.1-alpha.13", | ||
"vscode-languageserver-types": "^3.0.1-alpha.9", | ||
"vscode-uri": "^1.0.0" | ||
} | ||
} |