-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.98 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.98 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
{
"name": "@resultify/rh-cli",
"version": "1.3.2",
"description": "Resultify HubSpot CMS CLI",
"keywords": [
"hubspot",
"resultify",
"hubspot tools",
"cli",
"hubspot cms lib",
"hubspot cms"
],
"homepage": "https://github.com/Resultify/rh-cli#readme",
"bugs": {
"url": "https://github.com/Resultify/rh-cli/issues"
},
"license": "MIT",
"author": "Resultify",
"typings": "lib/",
"files": [
"bin/",
"lib/"
],
"bin": {
"rh": "./bin/rh-cli.js",
"rhcli": "./bin/rh-cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Resultify/rh-cli.git"
},
"scripts": {
"prepare": "husky",
"standardJs": "standard -v 'lib/**/*.js bin/**/*.js'",
"checkJs": "tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"test": "npm run standardJs && npm run checkJs",
"docs": "node build/docs.exec.js"
},
"dependencies": {
"@inquirer/checkbox": "4.0.0",
"@inquirer/confirm": "5.0.0",
"@inquirer/input": "4.0.0",
"@inquirer/select": "4.0.0",
"@octokit/request": "9.1.3",
"@resultify/hubspot-cms-lib": "3.7.3",
"browserslist": "4.24.0",
"chalk": "5.3.0",
"cli-table3": "0.6.5",
"del": "8.0.0",
"dotenv": "16.4.5",
"execa": "9.4.0",
"git-url-parse": "15.0.0",
"globby": "14.0.2",
"is-online": "11.0.0",
"libsodium-wrappers": "0.7.15",
"minimist": "1.2.8",
"ora": "8.1.0",
"semver": "7.6.3",
"signal-exit": "4.1.0",
"update-notifier": "7.3.1"
},
"devDependencies": {
"@types/git-url-parse": "~9.0.3",
"@types/libsodium-wrappers": "^0.7.14",
"@types/minimist": "~1.2.5",
"@types/node": "~22.7.5",
"@types/semver": "~7.5.8",
"@types/update-notifier": "~6.0.8",
"husky": "~9.1.6",
"jsdoc": "~4.0.3",
"modern-jsdoc-template": "~1.0.0",
"standard": "~17.1.2",
"typescript": "~5.6.3"
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"publishConfig": {
"access": "public"
},
"type": "module"
}