-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 KB
/
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
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
{
"name": "@hubspot/cli-lib",
"version": "9.1.1",
"description": "Library for creating scripts for working with HubSpot",
"license": "Apache-2.0",
"main": "index.js",
"homepage": "https://github.com/HubSpot/cli-lib#readme",
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/cli-lib"
},
"scripts": {
"check-main": "branch=$(git rev-parse --abbrev-ref HEAD) && [ $branch = main ] || (echo 'Error: New release can only be published on main branch' && exit 1)",
"lint": "eslint . && prettier --list-different packages/**/*.{js,json}",
"prettier:write": "prettier --write packages/**/*.{js,json}",
"pub": "npm publish --tag latest",
"push": "git push --atomic origin main v$npm_package_version",
"release:major": "yarn check-main && yarn version --major && yarn pub && yarn push",
"release:minor": "yarn check-main && yarn version --minor && yarn pub && yarn push",
"release:patch": "yarn check-main && yarn version --patch && yarn pub && yarn push",
"test": "jest"
},
"dependencies": {
"chalk": "^2.4.2",
"chokidar": "^3.0.1",
"content-disposition": "^0.5.3",
"debounce": "^1.2.0",
"extract-zip": "^1.6.7",
"findup-sync": "^4.0.0",
"fs-extra": "^8.1.0",
"ignore": "^5.1.4",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"moment": "^2.24.0",
"p-queue": "^6.0.2",
"prettier": "^1.19.1",
"request": "^2.87.0",
"request-promise-native": "^1.0.7",
"semver": "^6.3.0",
"table": "^6.6.0",
"unixify": "1.0.0"
},
"devDependencies": {
"@hubspot/local-dev-lib": "^0.3.0",
"lint-staged": "^10.5.4",
"prettier": "^1.19.1"
},
"peerDependencies": {
"@hubspot/local-dev-lib": "^0.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}