-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 814 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 814 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
{
"name": "diary",
"version": "1.0.0",
"description": "A command line interface for keeping a diary.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dylan-rinker/diary"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Dylan Rinker",
"license": "MIT",
"bin": {
"diary": "./index.js"
},
"dependencies": {
"chalk": "^5.0.0",
"commander": "^9.0.0",
"inquirer": "^8.2.0",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"uuid": "^8.3.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0"
}
}