-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.94 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
64
65
66
67
68
69
70
{
"name": "mean-ah",
"version": "0.0.1",
"description": "An online, multiplayer version of Cards Against Humanity built on the MEAN stack",
"main": "server/index.js",
"directories": {
"test": "test"
},
"bin": {
"coveralls": "./node_modules/coveralls/bin/coveralls.js"
},
"scripts": {
"test": "mocha test --recursive -R spec --timeout 8000",
"watch": "mocha test --recursive -R spec --watch --timeout 8000",
"syntax": "./node_modules/grunt-cli/bin/grunt build",
"coveralls": "mocha test --recursive -r blanket -R mocha-lcov-reporter | coveralls"
},
"config": {
"blanket": {
"pattern": "/server/"
}
},
"repository": {
"type": "git",
"url": "https://github.com/abarnhard/mean-ah"
},
"author": "Adam Barnhard <admbarn@gmail.com>",
"license": "CC-BY-NC-SA-3.0",
"bugs": {
"url": "https://github.com/abarnhard/mean-ah/issues"
},
"homepage": "https://github.com/abarnhard/mean-ah",
"dependencies": {
"async": "^0.9.0",
"bcrypt": "^0.8.0",
"body-parser": "^1.8.3",
"chalk": "^0.5.1",
"connect-redis": "^2.1.0",
"express": "^4.9.4",
"express-method-override": "0.0.3",
"express-session": "^1.8.2",
"mongodb": "^1.4.12",
"morgan": "^1.3.1",
"multiparty": "^3.3.2",
"request": "^2.44.0",
"socket.io": "^1.1.0",
"underscore": "^1.7.0",
"lodash": "~2.4.1"
},
"devDependencies": {
"chai": "^1.9.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.6.0",
"grunt-contrib-jade": "^0.12.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-less": "^0.11.4",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^0.7.1",
"grunt-shell": "^1.1.1",
"jshint-stylish": "^1.0.0",
"mocha": "~1.21.4",
"blanket": "~1.1.6",
"coveralls": "~2.11.2",
"mocha-lcov-reporter": "0.0.1",
"supertest": "~0.14.0",
"grunt-cli": "~0.1.13",
"socket.io-client": "~1.1.0"
}
}