forked from HubSpot/hubspot-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "hubspot-cms-tools",
"version": "1.0.0",
"description": "CLI tools for working with HubSpot",
"repository": "https://github.com/HubSpot/hubspot-cms-tools",
"private": true,
"devDependencies": {
"depcheck": "^1.3.1",
"eslint": "^6.5.1",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"lint-staged": "^8.1.4",
"madge": "^4.0.1",
"prettier": "^1.19.1"
},
"workspaces": [
"packages/*"
],
"scripts": {
"check-deps": "node bin/depcheck.js",
"lint": "eslint . && prettier --list-different 'packages/**/*.{js,json}'",
"prettier:write": "prettier --write 'packages/**/*.{js,json}'",
"publish-release": "yarn lerna publish --conventional-graduate",
"publish-prerelease": "yarn lerna publish prerelease --preid beta --dist-tag next",
"test": "jest",
"jest": "jest --watch",
"circular-deps": "yarn madge --circular packages"
},
"lint-staged": {
"**/*.{js,scss,css}": [
"prettier -l",
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"jest": "^26.6.3"
}
}