forked from furier/websync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.97 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "websync",
"version": "1.0.4",
"homepage": "https://github.com/furier/websync",
"repository": {
"type": "git",
"url": "https://github.com/furier/websync.git"
},
"authors": [
"Sander Struijk <sander.struijk@gmail.com>"
],
"description": "websync is intended to be an rsync manager, where rsync tasks can be added, scheduled and maintained in a sane manner.",
"main": "server.js",
"keywords": [
"rsync"
],
"license": "MIT",
"private": false,
"dependencies": {
"angular-cookies": "^1.2.19",
"angular-route": "^1.2.17-build.163.1",
"angular-sanitize": "0.0.1",
"cron": "^1.0.4",
"ejs": "~0.8.4",
"express": "~3.4.3",
"gulp-sass": "^1.3.3",
"jsonfile": "^1.1.1",
"lodash": "^3.7.0",
"q": "^1.0.1",
"react": "^0.11.0",
"restangular": "^1.4.0",
"rsync": "^0.4.0",
"socket.io": "^1.0.6",
"socket.io-client": "^1.0.6",
"underscore.string": "^2.3.3"
},
"devDependencies": {
"bower": "^1.4.1",
"brfs": "^1.1.2",
"browserify": "^4.2.3",
"browserify-shim": "^3.6.0",
"connect-livereload": "^0.4.0",
"gulp": "^3.8.6",
"gulp-changed": "^0.4.0",
"gulp-concat-css": "^0.1.4",
"gulp-imagemin": "^0.6.1",
"gulp-jshint": "^1.7.1",
"gulp-livereload": "^2.1.0",
"gulp-minify-css": "^0.3.7",
"gulp-minify-html": "^0.1.4",
"gulp-ng-annotate": "^0.2.0",
"gulp-nodemon": "^1.0.4",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.1.0",
"gulp-uglify": "^0.3.1",
"gulp-util": "^3.0.0",
"hiredis": "^0.1.17",
"msgpack": "^0.2.3",
"napa": "^0.4.1",
"vinyl-source-stream": "^0.1.1",
"watchify": "^0.10.2"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "gulp test",
"install": "napa && npm run install-bower-dependencies && npm run build-dist",
"install-bower-dependencies": "bower install",
"build-dist": "gulp dist"
},
"napa": {
"scrollglue": "Luegg/angularjs-scroll-glue",
"alertifyjs": "alertifyjs/alertify.js",
"angu-poly": "matjaz/angu-poly"
},
"browserify": {
"transform": [
"browserify-shim",
"brfs"
]
},
"browser": {
"restangular": "./node_modules/restangular/dist/restangular.js",
"scrollglue": "./node_modules/scrollglue/src/scrollglue.js",
"angular-socket": "./app/scripts/ngSocket.js",
"angular-alertify": "./app/scripts/ngAlertify.js",
"angu-poly": "./node_modules/angu-poly/angupoly.js"
},
"browserify-shim": {
"restangular": {
"depends": [
"lodash:_"
]
},
"angular-socket": {
"depends": [
"socket.io-client:io"
]
}
}
}