-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "mqtt-camera-ftpd",
"version": "1.1.0",
"description": "Acts as a fake FTPd server to translate FTP uploads from IP Cameras into motion events for MQTT",
"main": "server.js",
"bin": {
"mqtt-camera-ftpd": "./bin/mqtt-camera-ftpd"
},
"scripts": {
"pretest": "npm run hint && npm run style",
"hint": "jshint --show-non-errors *.js",
"style": "jscs .",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/stjohnjohnson/mqtt-camera-ftpd.git"
},
"keywords": [
"mqtt",
"camera",
"ftp"
],
"author": "St. John Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stjohnjohnson/mqtt-camera-ftpd/issues"
},
"homepage": "https://github.com/stjohnjohnson/mqtt-camera-ftpd",
"dependencies": {
"async": "^1.5.2",
"ftpd": "^0.2.12",
"js-yaml": "^3.4.3",
"mqtt": "^1.7.0",
"winston": "^2.0.0"
},
"devDependencies": {
"jscs": "^2.9.0",
"jshint": "^2.9.1"
}
}