forked from Romex91/tracerbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 793 Bytes
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
{
"name": "tracerbench-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "lerna run lint --stream",
"prepare": "lerna run prepare --stream",
"test": "lerna run test --stream",
"prepack": "lerna run prepack --stream",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn prepack",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"lerna": "^3.22.1",
"husky": "^4.3.6",
"conventional-changelog-cli": "^2.1.1",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/cli": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tracerbench/tracerbench.git"
}
}