forked from qiwi/pijma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.15 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna clean --yes && lerna run clean",
"build": "yarn clean && yarn lint && lerna run --stream build",
"watch": "lerna run --parallel watch",
"lint": "lerna run --no-bail --parallel lint",
"lint:fix": "lerna run --no-bail --parallel lint:fix",
"guide": "lerna run --concurrency=1 guide",
"guide_ci": "lerna run --concurrency=1 guide_ci"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"devDependencies": {
"@semantic-release/changelog": "3.0.4",
"@semantic-release/commit-analyzer": "6.3.0",
"@semantic-release/git": "7.0.16",
"@semantic-release/github": "5.4.2",
"@semantic-release/npm": "5.1.13",
"@semantic-release/release-notes-generator": "7.3.0",
"lerna": "3.16.4",
"semantic-release": "15.13.21",
"semantic-release-monorepo": "6.1.1",
"semantic-release-monorepo-hooks": "2.9.5",
"semantic-release-plugin-decorators": "2.0.0"
},
"name": "pijma",
"monorepoHooks": {
"afterAll": {
"cmd": [
"yarn run guide_ci"
]
}
}
}