-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.47 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
{
"name": "timedgoals",
"displayName": "TimedGoals",
"description": "Over the course of many hours of programming, it’s easy to lose your focus. You may find yourself inefficiently working without a particular goal, unwittingly creating unwanted features without consulting others, or even neglecting yourself. Achieving a state of focus often entails an attention to detail and commitment to productivity that can be hard to cultivate under the often stressful situations of software development. Whether you lose your focus over the course of many hours of work or find yourself with too many tasks to juggle at once, there’s always something keeping you from operating at peak performance. Timed-Goals is the solution. A task management program that runs inside of Visual Studio Code, Timed-Goals allows you to keep your project management objectives only inches of the screen away from the code you’re writing, literally putting you closer to your goals. Set timed reminders and todos that keep you on track, without the need for external software or an internet connection. With Timed-Goals, the power to be a productive developer is back in your hands. Julian George, Andrew Chen, and Alphonso Bradham's submission for HackDartmouth 2021",
"version": "0.3.8",
"repository":"https://github.com/chenmasterandrew/timed-goals",
"publisher": "chenmasterandrew",
"engines": {
"vscode": "^1.55.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:timedgoals.viewUI",
"*"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "timedgoals.viewUI",
"title": "Timed Goals: View UI"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"build": "npx babel src --out-dir dist & browserify dist/App.js > dist/compiled.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.55.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"dependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"browserify": "^17.0.0",
"fs": "0.0.1-security",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"redux": "^4.0.5"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}