{ "name": "vscode-cheer", "displayName": "Cheer", "description": "Have your editor cheer you on while you code!", "version": "1.1.0", "engines": { "vscode": "^1.29.0" }, "icon": "images/icon.png", "categories": [ "Other" ], "keywords": [ "cheer", "support", "happiness", "save" ], "activationEvents": [ "*" ], "main": "./extension", "contributes": { "configuration": { "title": "Cheer configuration", "properties": { "cheer.emoji": { "type": "boolean", "default": true, "description": "Whether to 🎉 or not" } } } }, "scripts": { "postinstall": "node ./node_modules/vscode/bin/install", "test": "node ./node_modules/vscode/bin/test", "test:mocha": "mocha -u tdd ./test/messages.test.js" }, "publisher": "puregarlic", "author": { "name": "Graham Barber", "email": "grahammbarber@gmail.com", "url": "https://standardresume.co/grahambarber" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/puregarlic/vscode-cheer.git" }, "bugs": { "url": "https://github.com/puregarlic/vscode-cheer/issues" }, "homepage": "https://github.com/puregarlic/vscode-cheer", "devDependencies": { "@types/mocha": "^2.2.42", "@types/node": "^8.10.25", "alex": "^6.0.0", "eslint": "^4.11.0", "mocha": "^5.2.0", "typescript": "^2.6.1", "vscode": "^1.1.21" }, "dependencies": { "get-random-from-array": "^1.1.1" } }