-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
40 lines (40 loc) · 1.16 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
{
"description": "This is root of svg-mixer monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"test"
],
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@jetbrains/logos": "1.0.0",
"@kisenka/eslint-config": "^2.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.0.0",
"jest": "^22.4.3",
"jest-extended": "^0.6.0",
"lerna": "^3.20.2",
"memory-fs": "^0.4.1",
"merge-options": "^1.0.1",
"prettier": "^2.0.2",
"pretty": "^2.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"copy-license": "lerna exec -- cp '$LERNA_ROOT_PATH/LICENSE' '$LERNA_ROOT_PATH/packages/$LERNA_PACKAGE_NAME'",
"lint": "eslint packages scripts test",
"publish": "yarn run copy-license && lerna publish from-git",
"release": "yarn run update-versions && yarn run publish",
"update-versions": "lerna version",
"update-versions:dry-run": "lerna version --no-push --no-git-tag-version",
"test": "jest"
}
}