forked from dwaring87/rtm-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.57 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
{
"name": "@beauraines/rtm-cli",
"version": "1.8.13",
"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",
"test": "jest --passWithNoTests",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"release": "standard-version",
"should-release": "should-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beauraines/rtm-cli.git"
},
"author": "Beau Raines <beau.raines@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/beauraines/rtm-cli/issues"
},
"homepage": "https://github.com/beauraines/rtm-cli#readme",
"dependencies": {
"@beauraines/rtm-api": "^1.6.0",
"chalk": "^4.0.0",
"cli-table3": "^0.6.3",
"commander": "^2.11.0",
"copy-paste": "^1.3.0",
"dateformat": "^4.0.0",
"debug": "^4.3.4",
"deepmerge": "^4.0.0",
"open": "^8.4.2",
"ora": "^5.0.0",
"prompt-sync": "^4.2.0",
"should-release": "^1.2.0",
"standard-version": "^9.5.0",
"window-size": "^1.1.0"
},
"devDependencies": {
"archiver": "^5.3.1",
"eslint": "^9.5.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.4.3",
"pkg": "^5.8.0"
},
"pkg": {
"scripts": [
"config.json",
"src/cmd/*.js"
],
"targets": "latest-linux-x64,latest-macos-x64,latest-win-x64",
"out": "./bin"
}
}