forked from FGRibreau/filesync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (45 loc) · 1.36 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
{
"name": "filesync",
"version": "2.2.0",
"description": "[WorkInProgress - ProofOfConcept] Unidirectional 1-N file syncing with history and local merging",
"scripts": {
"start": "./bin/filesync",
"postinstall": "./node_modules/.bin/bower install",
"prepublish": "[ -r ~/.global.npmignore ] && cat ~/.global.npmignore > .npmignore;cat .gitignore >> .npmignore;"
},
"bin": {
"filesync-relay": "./bin/filesync-relay",
"filesync-server": "./bin/filesync-server"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"bugs": {
"url": "https://github.com/FGRibreau/filesync/issues"
},
"homepage": "https://github.com/FGRibreau/filesync",
"repository": {
"type": "git",
"url": "https://github.com/FGRibreau/filesync.git"
},
"license": "MIT",
"dependencies": {
"async": "1.*.*",
"body-parser": "^1.12.0",
"bower": "^1.3.12",
"common-env": "4.*.*",
"express": "^4.12.2",
"gaze": "^0.5.1",
"lodash": "^3.3.1",
"socket.io": "^1.3.5",
"socket.io-client": "^1.3.5",
"winston": "1.*.*",
"morgan": "~1.0.0",
"body-parser": "~1.0.0",
"cookie-parser": "~1.0.0",
"method-override": "~1.0.0",
"express-session": "~1.0.0",
"passport": "0.3.2",
"passport-google-oauth": "0.2.0",
"passport-facebook": "2.0.0",
"passport-twitter": "1.0.3"
}
}