-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "invisible",
"version": "0.4.1",
"description": "DRY models for client and server",
"main": "index.js",
"scripts": {
"jscs": "jscs test/ lib/ examples/",
"jshint": "jshint lib/ test/ examples/",
"lint": "npm run jshint && npm run jscs",
"pretest": "npm run lint",
"test": "mocha test/server/ test/client/"
},
"repository": {
"type": "git",
"url": "git://github.com/mpaulucci/invisible.git"
},
"author": "Facundo Olano and Martin Paulucci",
"license": "BSD",
"bugs": {
"url": "https://github.com/mpaulucci/invisible/issues"
},
"dependencies": {
"body-parser": "^1.2.0",
"browserify": "10.x",
"coffee-script": "^1.9.2",
"coffeeify": "^1.1.0",
"express": "^4.12.3",
"mongodb": "^2.0.28",
"revalidator": "^0.3.0",
"socket.io": "^1.1.0",
"socket.io-client": "^1.1.0",
"socketio-auth": "0.0.1",
"underscore": "^1.7.0",
"winston": "^1.0.0"
},
"devDependencies": {
"jscs": "~1.8.0",
"jshint": "~2.5.10",
"matchdep": "~0.1.2",
"mocha": "~1.21.4",
"nock": "^0.32.1",
"proxyquire": "1.0.1",
"sinon": "^1.10.3",
"supertest": "~0.7.1"
}
}