-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
47
48
49
50
51
{
"name": "glpi-api",
"version": "1.6.1",
"description": "Node module for GLPI REST API",
"main": "glpi.js",
"author": "Martial Séron <[email protected]>",
"license": "MIT",
"scripts": {
"docs": "jsdoc --configure .jsdoc.json -R README.md --verbose",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc --reporter=text-lcov --reporter=text mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MartialSeron/glpi-api.git"
},
"bugs": {
"url": "https://github.com/MartialSeron/glpi-api/issues"
},
"homepage": "https://github.com/MartialSeron/glpi-api#readme",
"nyc": {
"extension": [
".js"
],
"exclude": [
".nyc_output",
"coverage",
"docs",
"node_modules",
"test"
]
},
"dependencies": {
"debug": "^4.3.1",
"lodash": "^4.17.20",
"qs": "^6.9.6",
"request": "^2.88.2",
"request-promise-native": "^1.0.9"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.8.1",
"docdash": "^0.4.0",
"eslint": "^4.18.1",
"jsdoc": "^3.6.3",
"mocha": "^8.2.1",
"nock": "^13.0.6",
"nyc": "^15.1.0"
}
}