-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "qlik-rest-api",
"version": "1.8.6",
"description": "Interact with multiple Qlik Sense REST APIs",
"author": {
"email": "info@informatiqal.com",
"name": "Informatiqal @informatiqal",
"url": "https://informatiqal.com"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=14.19.1"
},
"engineStrict": true,
"scripts": {
"test": "vitest run",
"docs": "npx typedoc src/index.doc.ts --name \"Qlik REST API\" --excludePrivate --hideGenerator --darkHighlightTheme dark-plus",
"build-tsc": "tsc",
"build": "rollup -c",
"watch": "rollup -cw"
},
"files": [
"dist/**/*",
"CHANGELOG.md",
"!dist/index.doc.d.ts"
],
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/stefanstoichev"
},
"keywords": [
"qlik",
"sense",
"rest",
"api",
"saas"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "24.0.1",
"axios": "^1.9.0",
"dotenv": "16.5.0",
"esm": "^3.2.25",
"nyc": "17.1.0",
"rollup": "4.43.0",
"rollup-plugin-delete": "^3.0.1",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typedoc": "0.28.5",
"typescript": "5.0.4",
"vitest": "^1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Informatiqal/qlik-rest-api.git"
},
"bugs": {
"url": "https://github.com/Informatiqal/qlik-rest-api/issues"
},
"homepage": "https://informatiqal.com/qlik-sense-rest-api-package/"
}