This repository has been archived by the owner on Nov 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
89 lines (89 loc) · 2.08 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "qrs",
"version": "2.0.3",
"description": "Node.js library to communicate with Qlik Sense Repository Service (QRS) API.",
"main": "index.js",
"scripts": {
"test": "mocha test/unit",
"test:unit": "mocha test/unit",
"coverage:unit": "gulp coverage:unit",
"test:e2e": "mocha test/e2e",
"preinstall": "npm install istanbul -g",
"docs": "docker run --rm -v ${PWD}:/opt/verb stefanwalther/verb"
},
"repository": {
"type": "git",
"url": "https://github.com/stefanwalther/qrs.git"
},
"keywords": [
"qlik",
"sense",
"qrs",
"qlik-sense-repository",
"api",
"rest",
"automation"
],
"author": "Stefan Walther",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanwalther/qrs/issues"
},
"homepage": "https://github.com/stefanwalther/qrs",
"dependencies": {
"async": "^2.6.0",
"brace-expansion": "^1.1.8",
"camelcase": "^4.1.0",
"extend-shallow": "^3.0.2",
"fs-utils": "^0.7.0",
"glob": "^7.1.2",
"httpreq": "^0.4.24",
"lodash": "^4.17.4",
"q": "^1.5.1",
"request": "^2.83.0",
"string": "^3.3.3",
"validate.js": "^0.12.0",
"winston": "^2.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"gulp": "git://github.com/gulpjs/gulp#4.0",
"gulp-istanbul": "^1.1.3",
"gulp-mocha": "^5.0.0",
"gulp-verb": "^0.3.0",
"mocha": "^5.0.0",
"nock": "^9.1.6",
"sinon": "^4.2.0",
"template": "^0.17.5"
},
"files": [
"index.js",
"lib/logger.js",
"lib/qrs.js",
"lib/sugar/ep-mime.js",
"lib/sugar/ep-extension.js"
],
"engines": {
"node": ">=0.8.0"
},
"verb": {
"baseUrl": "https://github.com/stefanwalther/qrs/blob/master/",
"baseImgUrl": "https://raw.githubusercontent.com/stefanwalther/qrs/master/",
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 2,
"footer": " "
},
"layout": "empty",
"tasks": [
"readme"
],
"data": {
"twitter": "waltherstefan",
"travis_url": "stefanwalther"
}
}
}