From fa707962d8bd220b611f6f5f29cba11ca7e67a92 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Wed, 20 Sep 2017 15:00:44 +0530 Subject: Initial Commit --- package.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..7991635 --- /dev/null +++ b/package.json @@ -0,0 +1,37 @@ +{ + "name": "kopy-io-plugin", + "displayName": "Kopy.io Plugin", + "description": "An unofficial plugin for kopy.io", + "version": "0.0.1", + "publisher": "indrajithkl", + "engines": { + "vscode": "^1.16.0" + }, + "categories": [ + "Other" + ], + "activationEvents": [ + "onCommand:extension.sayHello" + ], + "main": "./out/src/extension", + "contributes": { + "commands": [{ + "command": "extension.sayHello", + "title": "Hello World" + }] + }, + "scripts": { + "vscode:prepublish": "npm run compile", + "compile": "tsc -p ./", + "watch": "tsc -watch -p ./", + "postinstall": "node ./node_modules/vscode/bin/install", + "test": "npm run compile && node ./node_modules/vscode/bin/test" + }, + "devDependencies": { + "typescript": "^2.5.2", + "vscode": "^1.1.5", + "mocha": "^3.5.0", + "@types/node": "^7.0.43", + "@types/mocha": "^2.2.42" + } +} \ No newline at end of file -- cgit v1.2.3