-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.34 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
{
"name": "freshjuice-hubspot-devtools",
"version": "1.2.1",
"description": "FreshJuice HubSpot DevTools - A browser extension for HubSpot CMS developers with quick access to debug parameters and HubL documentation",
"author": {
"name": "FreshJuice",
"email": "alex@freshjuice.dev",
"url": "https://freshjuice.dev"
},
"contributors": [
{
"name": "Alex Zappa",
"url": "https://alex.zappa.dev"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/freshjuice-dev/hubspot-devtools-extension.git"
},
"homepage": "https://freshjuice.dev",
"bugs": {
"url": "https://github.com/freshjuice-dev/hubspot-devtools-extension/issues"
},
"keywords": [
"hubspot",
"devtools",
"developer-tools",
"browser-extension",
"chrome-extension",
"firefox-addon",
"cms",
"debug"
],
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"build:chrome": "node scripts/build.js --target=chrome",
"build:firefox": "node scripts/build.js --target=firefox",
"build:all": "npm run build:chrome && npm run build:firefox",
"zip": "node scripts/zip.js",
"zip:chrome": "node scripts/zip.js --target=chrome",
"zip:firefox": "node scripts/zip.js --target=firefox",
"zip:all": "npm run zip:chrome && npm run zip:firefox",
"icons": "node scripts/generate-icons.js",
"dev": "node scripts/build.js --watch",
"dev:chrome": "node scripts/build.js --target=chrome --watch",
"dev:firefox": "node scripts/build.js --target=firefox --watch",
"clean": "rm -rf dist",
"release": "npm run clean && npm run validate && npm run build:all && npm run zip:all",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"validate:chrome": "npm run build:chrome && node scripts/validate-chrome.js",
"validate:firefox": "npm run build:firefox && addons-linter dist/firefox/",
"validate": "npm run lint && npm run test && npm run validate:chrome && npm run validate:firefox"
},
"devDependencies": {
"addons-linter": "^9.6.0",
"archiver": "^7.0.1",
"chokidar": "^5.0.0",
"eslint": "^9.39.2",
"eslint-plugin-security": "^3.0.1",
"fs-extra": "^11.3.3",
"sharp": "^0.34.5",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0"
}
}