forked from danielgtaylor/node-desktop-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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": "desktop-uploader",
"version": "0.1.3",
"description": "Recursively watch directories and upload files",
"main": "lib/main.js",
"scripts": {
"dev": "gulp",
"compile": "gulp compile",
"coveralls": "gulp coveralls",
"prepublish": "gulp compile",
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/danielgtaylor/node-desktop-uploader.git"
},
"keywords": [
"watch",
"watchfile",
"upload",
"throttle"
],
"author": "Daniel G. Taylor",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielgtaylor/node-desktop-uploader/issues"
},
"homepage": "https://github.com/danielgtaylor/node-desktop-uploader",
"devDependencies": {
"coffee-script": "^1.8.0",
"gulp": "^3.8.7",
"gulp-coffee": "^2.2.0",
"gulp-coffeelint": "^0.4.0",
"gulp-coveralls": "^0.1.3",
"gulp-istanbul": "^0.2.2",
"gulp-mocha": "^1.0.0",
"mock-fs": "^2.3.1",
"sinon": "^1.10.3"
},
"dependencies": {
"async": "^0.9.0",
"chokidar": "^0.8.4",
"lodash": "^2.4.1",
"stream-throttle": "^0.1.3"
}
}