-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.49 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
90
91
92
93
94
95
96
97
98
{
"name": "automatiqal-cli",
"version": "0.15.1",
"description": "CLI wrapper for automatiqal",
"author": {
"email": "[email protected]",
"name": "Informatiqal @informatiqal",
"url": "https://informatiqal.com"
},
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"preferGlobal": true,
"bin": {
"automatiqal": "bin/automatiqal.js"
},
"scripts": {
"start": "node dist/app.js",
"prestart": "npm run build-tsc",
"build-tsc": "tsc --p tsconfig.debug.json",
"build": "rollup -c",
"watch": "rollup -cw",
"debug": "tsc --sourcemap",
"test": "vitest run",
"docs": "npx typedoc src/index.doc.ts --name \"Automatiqal\" --excludePrivate --hideGenerator",
"requirements-check": "node dist/check-version.js",
"postinstall": "npm run requirements-check"
},
"engines": {
"node": ">=14.19.1"
},
"engineStrict": true,
"keywords": [
"qlik",
"sense",
"qlik-sense",
"qlik sense",
"saas api",
"api",
"saas",
"automate",
"cli"
],
"files": [
"dist",
"*.json",
"*.md",
"LICENSE",
"CHANGELOG.md",
"dist/check-version.js",
"!tsconfig.json",
"!tsconfig.test.json",
"!tsconfig.debug.json",
"!renovate.json",
"!test.json",
"!Notes.md",
"!runbook-examples"
],
"repository": {
"type": "git",
"url": "git+https://github.com/informatiqal/automatiqal-cli.git"
},
"bugs": {
"url": "https://github.com/informatiqal/automatiqal-cli/issues"
},
"homepage": "https://informatiqal.com/automatiqal-cli/",
"devDependencies": {
"@informatiqal/variables-loader": "^0.0.6",
"@p-mcgowan/minimist": "^2.1.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.7.9",
"@types/node-fetch": "^2.6.11",
"@types/semver": "^7.5.8",
"automatiqal": "^0.11.1",
"console-table-printer": "^2.12.1",
"convert-csv-to-json": "^2.49.0",
"dotenv": "16.4.5",
"esm": "^3.2.25",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"nyc": "17.1.0",
"rollup": "^4.24.0",
"rollup-plugin-delete": "2.1.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"semver": "^7.6.3",
"ts-node": "10.9.2",
"tslib": "^2.8.0",
"typedoc": "0.26.10",
"typescript": "^5.0.4",
"vitest": "^1.5.2"
}
}