This repository was archived by the owner on Mar 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.41 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.41 KB
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": "meet-upper-cli",
"version": "2.2.3",
"description": "Node.js CLI for Meetup",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "bin/index.js",
"scripts": {
"build": "rimraf bin/* && tsc -p .",
"prettier": "prettier --write 'lib/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/awesome-cli/meet-upper-cli.git"
},
"engines": {
"node": ">=10"
},
"keywords": [
"cli",
"api",
"meetups",
"events",
"search"
],
"bugs": {
"url": "https://github.com/awesome-cli/meet-upper-cli/issues"
},
"homepage": "https://github.com/awesome-cli/meet-upper-cli#readme",
"bin": {
"meet-upper-cli": "bin/index.js",
"meet-upper": "bin/index.js",
"meetUPPER": "bin/index.js",
"MEET": "bin/index.js",
"MU": "bin/index.js"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.2.0",
"configstore": "^5.0.1",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"node-fetch": "^2.6.1",
"ora": "^5.1.0",
"two-digit": "^1.0.6"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/node": "^14.14.2",
"@types/node-fetch": "^2.5.7",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"lib/**/*.ts": [
"npm run prettier"
]
}
}