-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "habits-cli",
"version": "v0.3.711-alpha",
"author": "Jimmy Lan @lanyanxiang",
"description": "The habits application seeks to help individuals build up healthy habits.",
"homepage": "https://lanyanxiang.github.io/habits-cli",
"bugs": {
"url": "https://github.com/lanyanxiang/issues"
},
"keywords": [
"cli",
"habits"
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/lanyanxiang/habits-cli"
},
"main": "dist/src/index.js",
"bin": {
"habits": "bin/habits"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p .",
"lint": "eslint . --quiet --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run lint && cp docs/npm.README.md ./README.md",
"prepare": "npm run build",
"doc": "./scripts/open-browser.sh http://localhost:3000 && docsify serve docs/"
},
"dependencies": {
"axios": "^0.21.1",
"bson": "^4.5.1",
"chalk": "^4.1.2",
"cli-table3": "^0.6.0",
"commander": "^8.1.0",
"date-fns": "^2.23.0",
"esm": "^3.2.25",
"inquirer": "^8.1.2",
"inquirer-autocomplete-prompt": "^1.4.0",
"keytar": "^7.7.0",
"match-sorter": "^6.3.1",
"node-localstorage": "^2.2.1",
"ora": "^5.4.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/inquirer": "^7.3.3",
"@types/inquirer-autocomplete-prompt": "^1.3.3",
"@types/node-localstorage": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"docsify-cli": "^4.4.3",
"eslint": "^7.32.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"files": [
"dist/**/*",
"bin/habits",
"docs/README.md"
]
}