forked from JetBrains/svg-mixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"description": "This is root of svg-mixer monorepo",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*",
"test"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"devDependencies": {
"@commitlint/config-conventional": "6.1.3",
"@commitlint/core": "6.1.3",
"@jetbrains/logos": "1.0.0",
"@kisenka/eslint-config": "^1.0.2",
"eslint": "4.19.1",
"husky": "0.14.3",
"jest": "^22.4.3",
"jest-extended": "^0.6.0",
"lerna": "^2.11.0",
"memory-fs": "^0.4.1",
"merge-options": "^1.0.1",
"mocha": "5.0.5",
"pretty": "^2.0.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"commitmsg": "node scripts/lint-commit-msg",
"copy-license": "lerna exec -- cp '$LERNA_ROOT_PATH/LICENSE' '$LERNA_ROOT_PATH/packages/$LERNA_PACKAGE_NAME'",
"lint": "eslint packages scripts test",
"publish": "lerna publish --conventional-commits --npm-client=npm",
"publish:dry-run": "yarn run publish --skip-git --skip-npm",
"release": "lerna publish --conventional-commits --npm-client=npm",
"test": "jest"
}
}