-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
{
"name": "@makehq/cli",
"version": "1.1.0",
"description": "A command-line tool for Make automation platform",
"license": "MIT",
"author": "Make",
"repository": {
"type": "git",
"url": "git+https://github.com/integromat/make-cli.git"
},
"homepage": "https://www.make.com",
"type": "module",
"bin": {
"make-cli": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"test": "jest --coverage --coverageReporters=\"text\" --runInBand --forceExit --verbose false --testMatch \"**/test/**/*.spec.ts\"",
"lint": "tsc && eslint --quiet .",
"format": "npx prettier . --write"
},
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"@makehq/sdk": "^1.0.1",
"commander": "^14.0.3",
"open": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jest": "^28.11.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}