-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 630 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 630 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
35
36
37
38
{
"name": "pizza-cli",
"version": "1.0.1",
"description": "Order a pizza in a CLI app (just for fun!)",
"license": "MIT",
"repository": "xxczaki/pizza-cli",
"author": {
"name": "Antoni Kepinski",
"email": "a@kepinski.me",
"url": "https://kepinski.me"
},
"main": "cli.js",
"bin": {
"pizza": "cli.js"
},
"scripts": {
"test": "xo"
},
"keywords": [
"pizza-cli",
"pizza",
"cli",
"app",
"order",
"interactive",
"restaurant"
],
"dependencies": {
"lowdb": "^1.0.0",
"make-dir": "^1.3.0",
"meow": "^5.0.0",
"nanoid": "^2.0.0",
"prompts": "^1.2.0"
},
"devDependencies": {
"xo": "*"
}
}