-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "node-prtg",
"version": "0.4.1",
"description": "A Node.js module for interacting with the PRTG API. ",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"jsdoc": "jsdoc src -r -c ./docs/jsdoc.json -d docs",
"jsdocmd": "jsdoc2md src/**/*.js > doc.md"
},
"repository": {
"type": "git",
"url": "https://github.com/covenanttechnologysolutions/node-PRTG.git"
},
"keywords": [
"PRTG",
"paessler",
"API"
],
"author": "kgrube <kgrube@covenant-tech.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/covenanttechnologysolutions/node-PRTG/issues"
},
"homepage": "https://github.com/covenanttechnologysolutions/node-PRTG",
"dependencies": {
"lodash": "^4.17.11",
"request": "^2.88.0",
"xml2js": "~0.4.15"
},
"devDependencies": {
"coveralls": "^3.0.2",
"dotenv": "^6.0.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.3.0",
"should": "^13.2.3"
},
"engines": {
"node": ">=6.0.0"
}
}