Let your editor cheer you on while you code!
1{
2 "name": "vscode-cheer",
3 "displayName": "Cheer",
4 "description": "Have your editor cheer you on while you code!",
5 "version": "0.0.1",
6 "engines": {
7 "vscode": "^1.29.0"
8 },
9 "categories": [
10 "Other"
11 ],
12 "activationEvents": [
13 "*"
14 ],
15 "main": "./extension",
16 "contributes": {
17 "configuration": {
18 "title": "Cheer configuration",
19 "properties": {
20 "cheer.emoji": {
21 "type": "boolean",
22 "default": true,
23 "description": "Whether to 🎉 or not"
24 }
25 }
26 }
27 },
28 "scripts": {
29 "postinstall": "node ./node_modules/vscode/bin/install",
30 "test": "node ./node_modules/vscode/bin/test"
31 },
32 "devDependencies": {
33 "@types/mocha": "^2.2.42",
34 "@types/node": "^8.10.25",
35 "alex": "^6.0.0",
36 "eslint": "^4.11.0",
37 "mocha": "^5.2.0",
38 "typescript": "^2.6.1",
39 "vscode": "^1.1.21"
40 },
41 "dependencies": {
42 "get-random-from-array": "^1.1.1"
43 }
44}