-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.33 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "qlbuilder",
"version": "2.10.0",
"description": "CLI helper tool for Qlik Sense developers to allow write script locally and update in remote app",
"author": {
"email": "info@informatiqal.com",
"name": "Informatiqal @informatiqal",
"url": "https://informatiqal.com"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"preferGlobal": true,
"bin": {
"qlbuilder": "./bin/qlbuilder.js"
},
"files": [
"!.env",
"dist",
"funding.yml",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build-debug": "rollup -c rollup.config.debug.js",
"start": "node out/app.js",
"prestart": "npm run build-tsc",
"build:tsc": "tsc",
"test": "mocha --require ts-node/esm test/**/*.spec.js --exclude test/_playground.spec.js"
},
"homepage": "https://github.com/informatiqal/qlbuilder",
"repository": {
"type": "git",
"url": "https://github.com/informatiqal/qlbuilder.git"
},
"keywords": [
"qlik",
"sense",
"build",
"script",
"reload"
],
"license": "MIT",
"dependencies": {
"axios": "^1.12.2",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"cli-spinner": "^0.2.10",
"commander": "^14.0.1",
"enigma-mixin": "^1.8.0",
"enigma.js": "^2.14.0",
"filenamify": "^7.0.1",
"js-yaml": "^4.1.1",
"natural-orderby": "^5.0.0",
"prompts": "^2.4.2",
"qlik-sense-authenticate": "^0.2.0",
"ws": "^8.19.0"
},
"engines": {
"node": ">=16.0"
},
"devDependencies": {
"@gmrchk/cli-testing-library": "0.1.2",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chai": "5.2.3",
"@types/cli-spinner": "0.2.3",
"@types/enigma.js": "2.2.5",
"@types/js-yaml": "4.0.9",
"@types/mocha": "10.0.10",
"@types/node": "25.0.3",
"@types/qlik-engineapi": "12.67.16",
"@types/ws": "8.18.1",
"dotenv": "17.2.3",
"node-fetch": "^3.3.2",
"nyc": "17.1.0",
"rollup": "^4.55.1",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.3.3",
"vitest": "^1.5.2"
}
}