-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.72 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.72 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
91
92
93
94
95
96
97
98
99
{
"name": "@resultify/hubspot-cms-lib",
"version": "3.7.3",
"description": "Resultify HubSpot CMS lib",
"keywords": [
"hubspot",
"resultify",
"hubspot tools",
"hubspot cms lib",
"hubspot theme",
"hubspot cms"
],
"homepage": "https://github.com/Resultify/hubspot-cms-lib#readme",
"bugs": {
"url": "https://github.com/Resultify/hubspot-cms-lib/issues"
},
"license": "MIT",
"author": "Resultify",
"typings": "lib/",
"files": [
"bin/",
"lib/"
],
"bin": {
"cmslib": "./bin/cmslib.js"
},
"exports": {
"./upload": "./lib/cmd/upload.exec.js",
"./cleanUpload": "./lib/cmd/cleanUpload.exec.js",
"./ciUpload": "./lib/cmd/ciUpload.exec.js",
"./uploadModule": "./lib/cmd/uploadModule.exec.js",
"./buildModule": "./lib/cmd/buildModule.exec.js",
"./fetch": "./lib/cmd/fetch.exec.js",
"./fetchModules": "./lib/cmd/fetchModules.exec.js",
"./fetchDb": "./lib/cmd/fetchDb.exec.js",
"./uploadDb": "./lib/cmd/uploadDb.exec.js",
"./lighthouse": "./lib/cmd/lighthouse.exec.js",
"./validate": "./lib/cmd/validate.exec.js",
"./fields": "./lib/cmd/fields.exec.js",
"./watch": "./lib/cmd/watch.exec.js",
"./build": "./lib/cmd/build.exec.js",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/Resultify/hubspot-cms-lib.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": {
"@hubspot/local-dev-lib": "2.0.1",
"@inquirer/checkbox": "~4.0.0",
"@inquirer/confirm": "~5.0.0",
"@inquirer/select": "~4.0.0",
"@rollup/plugin-node-resolve": "~15.3.0",
"@rollup/plugin-replace": "~6.0.1",
"@types/minimist": "~1.2.5",
"@types/node": "~22.7.7",
"@types/postcss-import": "~14.0.0",
"@types/prompts": "~2.4.2",
"@types/semver": "~7.5.8",
"@types/fs-extra": "~11.0.4",
"chalk": "~5.3.0",
"chokidar": "~4.0.1",
"cli-table3": "~0.6.5",
"del": "~8.0.0",
"dotenv": "~16.4.5",
"execa": "~9.4.1",
"fs-extra": "^11.2.0",
"globby": "~14.0.2",
"minimist": "~1.2.8",
"ora": "~8.1.0",
"postcss": "~8.4.47",
"postcss-import": "~16.1.0",
"rollup": "~4.24.0",
"sass": "1.77.8",
"semver": "~7.6.2",
"signal-exit": "~4.1.0"
},
"devDependencies": {
"husky": "~9.1.6",
"modern-jsdoc-template": "~1.0.0",
"standard": "~17.1.2",
"typescript": "~5.6.3"
},
"engines": {
"node": ">=18",
"npm": ">=8.19"
},
"publishConfig": {
"access": "public"
},
"type": "module"
}