-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
43 lines (43 loc) · 972 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
{
"name": "cli-adventure-games",
"description": "Play Text based Adventures in your terminal",
"version": "0.1.2",
"homepage": "https://github.com/arvindr21/cli-adventure-games",
"author": {
"name": "arvind ravulavaru",
"url": "https://github.com/arvindr21"
},
"repository": {
"type": "git",
"url": "git://github.com/arvindr21/cli-adventure-games.git"
},
"bugs": {
"url": "https://github.com/arvindr21/cli-adventure-games/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/arvindr21/cli-adventure-games/blob/master/LICENSE-MIT"
}
],
"keywords": [
"cli",
"games",
"adventure games",
"zork",
"command line"
],
"preferGlobal": true,
"bin": {
"cli-adventure-games": "./bin/cli-adventure-games"
},
"main": "index.js",
"engines": {
"node": ">=0.8"
},
"dependencies": {
"chalk": "^2.3.0",
"cli-table": "^0.3.1",
"inquirer": "^4.0.1"
}
}