-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1011 Bytes
/
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
{
"name": "inquirer-datepicker",
"version": "2.0.2",
"description": "Datepicker prompt for inquirer.js",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "prettier --write .",
"prepublishOnly": "npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuintun/inquirer-datepicker.git"
},
"keywords": [
"inquirer",
"datepicker",
"prompt"
],
"author": {
"name": "nuintun",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nuintun/inquirer-datepicker/issues"
},
"engines": {
"node": ">=10.0.0"
},
"homepage": "https://github.com/nuintun/inquirer-datepicker#readme",
"dependencies": {
"chalk": "^4.1.2",
"cli-cursor": "^3.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"rxjs": "^7.5.5"
},
"devDependencies": {
"inquirer": "^8.2.2",
"prettier": "^2.6.2"
},
"peerDependencies": {
"inquirer": ">=6.0.0"
}
}