-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.39 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": "rflect",
"version": "2.0.10",
"private": false,
"description": "A CLI tool for guided reflections and journaling",
"main": "src/index.js",
"bin": {
"rflect": "src/index.js"
},
"scripts": {
"postinstall": "node src/scripts/install.js",
"start": "node src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"keywords": [
"cli",
"journal",
"journaling",
"reflection",
"mindfulness",
"productivity",
"personal-development",
"writing-tool",
"terminal",
"self-improvement",
"daily-journal",
"mental-health",
"goal-tracking"
],
"author": {
"name": "Aniqa",
"email": "[email protected]",
"url": "https://aniqa.dev"
},
"homepage": "https://github.com/aniqatc/rflect-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/aniqatc/rflect-cli.git"
},
"bugs": {
"url": "https://github.com/aniqatc/rflect-cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"license": "MIT",
"dependencies": {
"calendar-js": "^1.4.4",
"chalk": "^4.1.2",
"commander": "^9.4.1",
"date-fns": "^4.1.0",
"inquirer": "^8.2.4"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1"
}
}