-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 899 Bytes
/
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
{
"name": "handoff-hubspot",
"version": "0.0.3",
"description": "A simple CLI toolchain for fetching handoff components and transpiling them into hubspot modules",
"main": "index.js",
"bin": {
"handoff-hubspot": "dist/index.js"
},
"scripts": {
"build": "tsc",
"fetch": "node dist/index.js",
"start": "http-server ./",
"publish": "np",
"test": "echo \"Error: no test specified\""
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"chalk": "^4.0.0",
"handlebars": "^4.7.8",
"http-server": "^14.1.1",
"prettier": "^3.4.2",
"prettier-plugin-jinja-template": "^2.0.0",
"prompt": "^1.3.0",
"prompts": "^2.4.2",
"uuid": "^11.0.5",
"yargs": "^17.7.2",
"yargs-interactive": "^3.0.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"np": "^10.2.0"
}
}