-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
{
"name": "qlik-proxy-api",
"version": "1.2.3",
"description": "Interact with Qlik Sense Proxy API (QSEoW)",
"author": {
"email": "info@informatiqal.com",
"name": "Informatiqal @informatiqal",
"url": "https://informatiqal.com"
},
"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 Proxy API\" --excludePrivate --hideGenerator --darkHighlightTheme dark-plus",
"test": "set TS_NODE_PROJECT=tsconfig.test.json&mocha --require ts-node/register test/**/*.spec.ts --loader=ts-node/esm --no-warnings=ExperimentalWarning --experimental-specifier-resolution=node --ignore test/playground.spec.ts",
"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": ">=16.0.0"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Informatiqal/qlik-proxy-api.git"
},
"keywords": [
"proxy",
"qlik",
"qlik-sense",
"rest",
"api"
],
"license": "MIT",
"files": [
"dist",
"*.json",
"*.md",
"LICENSE",
"!tsconfig.json",
"!renovate.json",
"!tsconfig copy.json",
"!tsconfig.test.json",
"!dist/index.doc.ts",
"!dist/index.doc.d.ts"
],
"bugs": {
"url": "https://github.com/Informatiqal/qlik-proxy-api/issues"
},
"homepage": "https://informatiqal.com/qlik-proxy-api/",
"dependencies": {
"qlik-rest-api": "^1.7.2"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.0.0",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.1",
"@types/node": "18.17.9",
"chai": "4.3.7",
"dotenv": "16.3.1",
"es6-template-strings": "2.0.1",
"esm": "^3.2.25",
"mocha": "10.2.0",
"mocha-badge-generator": "0.10.6",
"nyc": "15.1.0",
"rollup": "^3.12.0",
"rollup-plugin-delete": "2.0.0",
"ts-node": "10.9.1",
"typedoc": "0.24.8",
"typescript": "5.0.4"
}
}