-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1021 Bytes
/
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
{
"name": "@richnologies/foscam",
"version": "1.0.0",
"description": "Foscam cgi-bin API implementation in JS",
"main": "index.js",
"scripts": {
"test": "mocha",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/richnologies/foscam.git"
},
"keywords": [
"foscam",
"camera",
"control"
],
"author": "Ricardo Sanchez Gregorio <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.1",
"xml2js": "^0.4.9"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "6.9.0",
"babel-register": "^6.24.1",
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"chai-http": "3.0.0",
"codecov.io": "0.1.6",
"gulp": "3.9.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"proxyquire": "1.7.10",
"run-sequence": "1.2.2",
"sinon": "1.17.5",
"standard": "^10.0.2",
"yargs": "4.8.1"
}
}