-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.04 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
{
"name": "qlik-repo-api",
"version": "0.15.1",
"description": "Interact with Qlik Sense Repository API (QSEoW)",
"author": {
"email": "[email protected]",
"name": "Informatiqal @informatiqal",
"url": "https://informatiqal.com"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"start": "node dist/app.js",
"prestart": "npm run build-tsc",
"build-tsc": "tsc",
"build": "rollup -c",
"watch": "rollup -cw",
"docs": "npx typedoc src/index.doc.ts --name \"Qlik Repo API\" --excludePrivate --hideGenerator --darkHighlightTheme dark-plus",
"test": "vitest run",
"test-badge": "set TS_NODE_PROJECT=tsconfig.test.json&mocha --reporter .\\node_modules\\mocha-badge-generator\\src --reporter-options=badge_format=svg,badge_output=badge.svg --require ts-node/register test/**/*.spec.ts"
},
"engines": {
"node": ">=14.19.1"
},
"engineStrict": true,
"keywords": [
"qlik",
"sense",
"qlik-sense",
"qlik sense",
"repo api",
"repository",
"api"
],
"files": [
"dist",
"*.json",
"*.md",
"LICENSE",
"CHANGELOG.md",
"!tsconfig.json",
"!tsconfig.test.json",
"!renovate.json",
"!Notes.md"
],
"repository": {
"type": "git",
"url": "https://github.com/informatiqal/qlik-repo-api.git"
},
"bugs": {
"url": "https://github.com/informatiqal/qlik-repo-api/issues"
},
"homepage": "https://informatiqal.com/qlik-repo-api/",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "22.5.4",
"dotenv": "16.4.5",
"esm": "^3.2.25",
"rollup": "4.21.2",
"rollup-plugin-delete": "^2.1.0",
"ts-node": "10.9.2",
"tslib": "2.7.0",
"typedoc": "0.26.7",
"typescript": "5.0.4",
"vitest": "^0.33.0"
},
"dependencies": {
"name2mime": "^1.0.1",
"qlik-rest-api": "^1.8.4"
}
}