-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "mahjong",
"version": "0.0.1",
"description": "Application for simulating, analyzing, and playing a game of three-player mahjong",
"main": "app.js",
"dependencies": {
"connect": "2.11.0",
"connect-mongo": "^0.4.0",
"crypto-js": "~3.1.2",
"dotenv": "^2.0.0",
"express": "~3.4.4",
"mocha": "~1.13.0",
"mongodb": "~1.3.19",
"moniker": "~0.1.2",
"optimist": "~0.6.0",
"q": "~0.9.7",
"socket.io": "~0.9.16",
"swig": "~1.1.0",
"underscore": "~1.5.2"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "~0.4.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-cssmin": "~0.6.2",
"grunt-contrib-jshint": "~0.6.3",
"grunt-contrib-less": "~0.8.2",
"grunt-contrib-uglify": "~0.2.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-mocha-test": "~0.7.0",
"grunt-nodemon": "~0.1.1"
},
"scripts": {
"test": "mocha",
"grunt": "grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/gleitz/mahjong.git"
},
"keywords": [
"mahjong",
"tiles",
"mahjong ai"
],
"author": "Benjamin Gleitzman",
"license": "MIT",
"bugs": {
"url": "https://github.com/gleitz/mahjong/issues"
}
}