-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 913 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 913 Bytes
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
{
"name": "plaintexttaskmenu",
"version": "0.2.1",
"description": "A program that examines taskpaper files in a folder and creates a markdown table of the due dates in order",
"main": "index.js",
"author": "Tim Bendt <sirtimbly@gmail.com>",
"dependencies": {
"commander": "^2.3.0",
"js-yaml": "^3.2.2",
"lodash": "^2.4.1",
"marked": "^0.3.5",
"menubar": "*",
"moment": "^2.10.6",
"walk": "*"
},
"devDependencies": {
"electron-packager": "^5.1.0",
"electron-prebuilt": "^0.36.0"
},
"engines": {
"node": "0.10.x"
},
"repository": {
"type": "git",
"url": "https://github.com/sirtimbly/plaintexttaskmenu"
},
"preferGlobal": true,
"bin": {
"task-scheduler": "index.js"
},
"scripts": {
"build": "electron-packager . MenubarTasklist --platform=darwin --arch=x64 --version=0.36.0 --icon=Icon.icns",
"start": "electron ."
}
}