This repository was archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
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
{
"name": "foscam-client",
"version": "0.5.0",
"description": "Node client sdk for the current H.264 Foscam cameras like the FI9821W, FI9831P, etc.P",
"homepage": "https://github.com/lightswitch05/foscam-client",
"author": "Daniel White <daniel@developerdan.com> (http://www.developerdan.com)",
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"foscam",
"FI9831P",
"FI9821W"
],
"scripts": {
"test": "gulp",
"docs": "./node_modules/.bin/jsdoc --configure .jsdoc.json",
"prepublish": "gulp prepublish",
"lint": "gulp lint",
"serve-docs": "node ./serve-docs.js"
},
"repository": {
"type": "git",
"url": "git@github.com:lightswitch05/foscam-client.git"
},
"license": "MIT",
"dependencies": {
"q": "^1.4.1",
"request-promise": "^2.0.0",
"xml2js": "^0.4.12"
},
"devDependencies": {
"chai": "^3.4.1",
"express": "^4.13.3",
"gulp": "^3.6.0",
"gulp-coveralls": "^0.1.0",
"gulp-eslint": "^1.1.0-rc-3",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.9.0",
"gulp-mocha": "^2.0.0",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"jsdoc": "^3.3.3",
"minami": "^1.1.1",
"mocha": "^2.3.3",
"mockery": "^1.4.0",
"sinon": "^1.17.2",
"uglify-js": "^2.5.0"
}
}