-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.59 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vscode-remind-me",
"displayName": "Remind Me",
"description": "Ask vscode to remind you...",
"version": "0.1.0",
"publisher": "cg-cnu",
"engines": {
"vscode": "^1.16.0"
},
"categories": [
"Other"
],
"bugs": {
"email": "[email protected]",
"url": "https://github.com/cg-cnu/vscode-remind-me/issues"
},
"galleryBanner": {
"theme": "dark",
"color": "#3E0E0E"
},
"homepage": "https://github.com/cg-cnu/vscode-remind-me",
"icon": "icons/remind-me-128.png",
"repository": {
"type": "git",
"url": "https://github.com/cg-cnu/vscode-remind-me"
},
"author": {
"email": "[email protected]",
"name": "Sreenivas Alapati",
"url": "https://twitter.com/cgcnu"
},
"readme": "README.md",
"license": "MIT",
"keywords": [
"reminder",
"todo",
"timer",
"productivity",
"note"
],
"activationEvents": [
"onCommand:remindMe.remind"
],
"main": "./out/src/remindMe",
"contributes": {
"commands": [
{
"command": "remindMe.remind",
"title": "Yo code! remind me!!"
}
]
},
"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": {
"@types/mocha": "^5.2.7",
"@types/node": "^11.15.12",
"mocha": "^6.2.3",
"typescript": "^3.8.3",
"vscode": "^1.1.36"
},
"dependencies": {
"date-fns": "^1.30.1",
"sherlockjs": "^1.4.0"
}
}