-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.24 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
{
"name": "rtm-cli",
"version": "1.5.1",
"description": "RTM CLI",
"keywords": [
"rtm",
"cli",
"terminal",
"remember the milk",
"tasks",
"task manager",
"todo",
"gtd"
],
"bin": {
"rtm": "src/cli.js"
},
"main": "src/utils/index.js",
"scripts": {
"postversion": "npm run build",
"build": "node build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwaring87/rtm-cli.git"
},
"author": "David Waring <[email protected]> (https://davidwaring.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwaring87/rtm-cli/issues"
},
"homepage": "https://github.com/dwaring87/rtm-cli#readme",
"dependencies": {
"chalk": "^2.3.0",
"cli-table3": "^0.5.0",
"commander": "^2.11.0",
"copy-paste": "^1.3.0",
"dateformat": "^3.0.2",
"deepmerge": "^2.0.1",
"opn": "^5.4.0",
"ora": "^1.3.0",
"rtm-api": "^1.3.0",
"window-size": "^1.1.0"
},
"devDependencies": {
"archiver": "^2.1.0",
"pkg": "^4.3.3"
},
"pkg": {
"scripts": [
"config.json",
"src/cmd/*.js"
],
"targets": "node8-linux-x86,node8-linux-x64,node8-macos-x86,node8-macos-x64,node8-win-x86,node8-win-x64",
"out": "./bin"
}
}