forked from syndesisio/syndesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 694 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^8.3.3",
"@commitlint/config-conventional": "^8.3.3",
"husky": "~3",
"lint-staged": "~9",
"npm-run-all": "~4"
},
"husky": {
"hooks": {
"pre-commit": "npm-run-all pre-commit:*",
"pre-push": "npm-run-all pre-push:*",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"pre-commit:lint-staged": "lint-staged",
"pre-commit:add-operator-assets-vfsdata": "git add install/operator/pkg/generator/assets_vfsdata.go",
"pre-commit:ui-react": "cd app/ui-react && yarn pre-commit",
"pre-push:ui-react": "./tools/bin/syndesis -m ui-react --incremental"
}
}