Let your editor cheer you on while you code!
at main 1.5 kB view raw
1{ 2 "name": "vscode-cheer", 3 "displayName": "Cheer", 4 "description": "Have your editor cheer you on while you code!", 5 "version": "1.1.0", 6 "engines": { 7 "vscode": "^1.29.0" 8 }, 9 "icon": "images/icon.png", 10 "categories": [ 11 "Other" 12 ], 13 "keywords": [ 14 "cheer", 15 "support", 16 "happiness", 17 "save" 18 ], 19 "activationEvents": [ 20 "*" 21 ], 22 "main": "./extension", 23 "contributes": { 24 "configuration": { 25 "title": "Cheer configuration", 26 "properties": { 27 "cheer.emoji": { 28 "type": "boolean", 29 "default": true, 30 "description": "Whether to 🎉 or not" 31 } 32 } 33 } 34 }, 35 "scripts": { 36 "postinstall": "node ./node_modules/vscode/bin/install", 37 "test": "node ./node_modules/vscode/bin/test", 38 "test:mocha": "mocha -u tdd ./test/messages.test.js" 39 }, 40 "publisher": "puregarlic", 41 "author": { 42 "name": "Graham Barber", 43 "email": "grahammbarber@gmail.com", 44 "url": "https://standardresume.co/grahambarber" 45 }, 46 "license": "MIT", 47 "repository": { 48 "type": "git", 49 "url": "https://github.com/puregarlic/vscode-cheer.git" 50 }, 51 "bugs": { 52 "url": "https://github.com/puregarlic/vscode-cheer/issues" 53 }, 54 "homepage": "https://github.com/puregarlic/vscode-cheer", 55 "devDependencies": { 56 "@types/mocha": "^2.2.42", 57 "@types/node": "^8.10.25", 58 "alex": "^6.0.0", 59 "eslint": "^4.11.0", 60 "mocha": "^5.2.0", 61 "typescript": "^2.6.1", 62 "vscode": "^1.1.21" 63 }, 64 "dependencies": { 65 "get-random-from-array": "^1.1.1" 66 } 67}