-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "word-snatchers-cli",
"version": "3.1.1",
"description": "A console game which target is unscramble the letters to spell out a word fitting the given definition",
"main": "src/index.js",
"repository": "https://github.com/akgondber/word-snatchers-cli",
"author": "Rushan Alyautdinov <akgondber@gmail.com>",
"license": "SEE LICENSE IN LICENSE",
"type": "module",
"bin": {
"wsc": "cli.js",
"word-snatchers-cli": "cli.js",
"words-snatchers-cli": "cli.js",
"words-snatchers": "cli.js",
"wrds": "cli.js",
"words-cli": "cli.js",
"words-game": "cli.js"
},
"scripts": {
"play": "node cli.js",
"play-suite": "node cli.js --suite",
"setup": "node scripts/pch.js",
"test": "uvu tests",
"prettify": "prettier --write .",
"check-files": "purposefile"
},
"keywords": [
"consolegame",
"cli",
"console",
"english",
"vocabulary",
"play",
"learn",
"word",
"words",
"unscramble",
"test",
"suite",
"http",
"httpfriendly",
"rounds"
],
"dependencies": {
"ansi-colors": "^4.1.3",
"axios": "^1.3.3",
"cac": "^6.7.14",
"fast-shuffle": "^5.0.2",
"filehound": "^1.17.6",
"log-utils": "^1.0.0",
"mlly": "^1.1.0",
"superstruct": "^0.16.4"
},
"devDependencies": {
"expect": "^29.3.1",
"post-command-hook": "^2.0.2",
"post-command-hook-install-packages-plugin": "^1.0.1",
"prettier": "^2.7.1",
"purposefile": "^1.2.0",
"sinon": "^14.0.1",
"uvu": "^0.5.6"
}
}