From bbe4493a517c97fcebf56783dc7bd374f94346bd Mon Sep 17 00:00:00 2001 From: Chris Stead Date: Wed, 18 Aug 2021 15:13:54 -0700 Subject: [PATCH] New version, 0.1.0 --- package.json | 158 +++++++++++++++++++++++++-------------------------- 1 file changed, 79 insertions(+), 79 deletions(-) diff --git a/package.json b/package.json index 6c77a9c..8dbb17f 100644 --- a/package.json +++ b/package.json @@ -1,80 +1,80 @@ { - "name": "snipkit", - "displayName": "SnipKit", - "description": "Enhanced snippet creation and editing for VS Code", - "version": "0.0.1", - "engines": { - "vscode": "^1.46.0" - }, - "categories": [ - "Programming Languages", - "Snippets", - "Formatters", - "Other" - ], - "main": "./extension.js", - "scripts": { - "lint": "eslint .", - "pretest": "npm run lint", - "test": "mocha ./test/**/*.test.js && gittey commit" - }, - "devDependencies": { - "@types/glob": "^7.1.3", - "@types/mocha": "^8.0.4", - "@types/node": "^12.11.7", - "@types/vscode": "^1.46.0", - "approvals": "^4.0.0-beta.1", - "chai": "^4.3.4", - "eslint": "^7.15.0", - "glob": "^7.1.6", - "mocha": "^8.4.0", - "typescript": "^4.1.2", - "vscode-test": "^1.4.1" - }, - "public": true, - "activationEvents": [ - "onCommand:cmstead.snipkit.indent", - "onCommand:cmstead.snipkit.outdent" - ], - "contributes": { - "commands": [ - { - "command": "cmstead.snipkit.indent", - "title": "SnipKit: Indent Lines", - "description": "Indent selected body lines" - }, - { - "command": "cmstead.snipkit.outdent", - "title": "SnipKit: Outdent Lines", - "description": "Outdent selected body lines" - } - ], - "keybindings": [ - { - "command": "cmstead.snipkit.indent", - "key": "ctrl+alt+]", - "mac": "cmd+alt+]", - "when": "editorHasSelection" - }, - { - "command": "cmstead.snipkit.outdent", - "key": "ctrl+alt+[", - "mac": "cmd+alt+[", - "when": "editorHasSelection" - } - ], - "snippets": [ - { - "language": "json", - "path": "./snippets.json" - }, - { - "language": "jsonc", - "path": "./snippets.json" - } - ] - }, - "dependencies": { - "json-ast": "^2.1.7" - } -} + "name": "snipkit", + "displayName": "SnipKit", + "description": "Enhanced snippet creation and editing for VS Code", + "version": "0.1.0", + "engines": { + "vscode": "^1.46.0" + }, + "categories": [ + "Programming Languages", + "Snippets", + "Formatters", + "Other" + ], + "main": "./extension.js", + "scripts": { + "lint": "eslint .", + "pretest": "npm run lint", + "test": "mocha ./test/**/*.test.js && gittey commit" + }, + "devDependencies": { + "@types/glob": "^7.1.3", + "@types/mocha": "^8.0.4", + "@types/node": "^12.11.7", + "@types/vscode": "^1.46.0", + "approvals": "^4.0.0-beta.1", + "chai": "^4.3.4", + "eslint": "^7.15.0", + "glob": "^7.1.6", + "mocha": "^8.4.0", + "typescript": "^4.1.2", + "vscode-test": "^1.4.1" + }, + "public": true, + "activationEvents": [ + "onCommand:cmstead.snipkit.indent", + "onCommand:cmstead.snipkit.outdent" + ], + "contributes": { + "commands": [ + { + "command": "cmstead.snipkit.indent", + "title": "SnipKit: Indent Lines", + "description": "Indent selected body lines" + }, + { + "command": "cmstead.snipkit.outdent", + "title": "SnipKit: Outdent Lines", + "description": "Outdent selected body lines" + } + ], + "keybindings": [ + { + "command": "cmstead.snipkit.indent", + "key": "ctrl+alt+]", + "mac": "cmd+alt+]", + "when": "editorHasSelection" + }, + { + "command": "cmstead.snipkit.outdent", + "key": "ctrl+alt+[", + "mac": "cmd+alt+[", + "when": "editorHasSelection" + } + ], + "snippets": [ + { + "language": "json", + "path": "./snippets.json" + }, + { + "language": "jsonc", + "path": "./snippets.json" + } + ] + }, + "dependencies": { + "json-ast": "^2.1.7" + } +} \ No newline at end of file