forked from theganyo/word-fling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 772 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
{
"name": "word-fling",
"version": "1.0.0",
"description": "Simple example of a word-based game using Redis",
"main": "bin/word-fling",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/theganyo/word-fling"
},
"keywords": [
"node",
"redis",
"word",
"game",
"dictionary"
],
"author": "Scott Ganyo",
"license": "ISC",
"bugs": {
"url": "https://github.com/theganyo/word-fling/issues"
},
"homepage": "https://github.com/theganyo/word-fling",
"dependencies": {
"async": "^1.4.2",
"bcryptjs": "^2.2.1",
"commander": "^2.8.1",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"redis": "^1.0.0"
},
"devDependencies": {
"should": "^7.1.0"
}
}